// execute your scripts when the DOM is ready. this is a good habit 
jQuery.noConflict();
jQuery(document).ready(function($) {
$(function() { 
 
    // initialize scrollable 
    /*$("div.scrollable").scrollable({
		size: 6,
	});*/
	$("#infinite").scrollable({
		size: 6
	}).circular();	

 });
});
