jQuery(document).ready(function($) {
    $('.carousel').jcarousel({
    	scroll: 1
    });
    
    $('.jcarousel-item').hover(
	function () { $(this).children('a.hover').fadeIn(); },
	function () { $(this).children('a.hover').fadeOut(); } 
	);
    
    $("body").queryLoader2({
        barColor: "#6e6d73",
        backgroundColor: "#fff1b0",
        percentage: true,
        barHeight: 30,
        completeAnimation: "grow"
    });
});

