
jQuery(document).ready(function($) {
	
$("#fireshow .fireshow").hide();
function LoadComplete() {	
	try {
		$('#fireshow .fireshow:first').addClass("active");
		rotate();	
	} catch(e) {
		window.setTimeout('LoadComplete();', 1000);		
	}
}

function rotate() {
	$("#fireshow .active").animate({opacity: "show"}, 1100);
setTimeout(function(){
	$("#fireshow .active").animate({ opacity: "hide" }, 1100);	 
	$active = $('#fireshow .active').next('.fireshow');
  
			
			if ($active.length === 0) {			
				   $('#fireshow .active').removeClass('active');
				   $('#fireshow .fireshow:first').addClass("active");				   
				   
		   
				   rotate();	   
			}else{				
					$('#fireshow .active').removeClass('active');
					$active.addClass("active");			
				
				
					rotate();		
};
}, 7000);
};
window.onload = function(e) {
 	LoadComplete();
}

jQuery(".buttonAddCart input").hover(function () {
jQuery(this).addClass("active");
}, function () {
 jQuery(this).removeClass("active");
});


});
