$(function(){
	$('.targetBlank').click(function(ev){
		window.open($(this).attr('href'));
		ev.preventDefault();
		return false;
	});
	
	$(".scrollable").scrollable({circular: true}).autoscroll({ autoplay: true });
	
});
