jQuery(document).ready(function($) {
	
	$("a.disabled").click(function(e) {
		e.preventDefault();
	});
	
	// initialize scrollables  
    $(".home .scrollable").scrollable({
			size: 1,
			circular: true,	
		}).navigator().autoscroll(6000);
		
	$(".scrollable").scrollable();
			
	// make any external link open in a new window 
	$('a[rel=external], a[rel=nofollow]').each(function() {
		$(this).attr('target', '_blank');
	});

	
});
