/*Global.jg*/
$(document).ready(function() {      

    //Carousel      
    $("#posts-carousel").jcarousel({
        scroll: 1,
		easing: "swing",
		animation: 1000,
        auto: 15,
        wrap: 'last'
    });  
    
    //External Links
    $("a[rel='blank']").click(function(){
		window.open(this.href, null, 'directories=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes');
		return false;
    });
    
                   
});
