// ::: JQUERY ::: //
jQuery.noConflict(); //  jQuery replaces $ so not to conflict with mootools

var SiteJquery = {

	start : function(){
		
		//SiteJquery.PageCarousel();
		
	},
	
	PageCarousel : function(){
		
		jQuery(".carousel").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			visible: 1,
			btnGo:
			[".1", ".2",
			".3", ".4",
			".5", ".6"]
		});
		
	}
	
};

jQuery(document).ready(SiteJquery.start);

// ::: JQUERY END ::: //


