function loading($percent){	
	$("#percent").animate({"width":$percent},function(){
		if($(this).css('width')=='200px'){
			$("#load").hide();
		}
	});
}

$(function() {
    $("#carousel").jCarouselLite({
        btnNext: ".back",
        btnPrev: ".foward",
	visible: 4
    });
});

