$(document).ready(function(){
	carousel_init('#promotions_carousel',$('#promotions_carousel_count').text(), parseInt($('#promotions_carousel_auto_speed').text()), 1);
	carousel_init('#product_carousel',$('#product_carousel_count').text(),0,2);
	carousel_init('#special_carousel', $('#special_carousel_count').text(),0,1);
	carousel_init('#special_product_carousel', $('#special_product_carousel_count').text(),0,2);
	
	// Change header image when mouse hover
	if ($('#dealHeaderImage > img').length == 2)
	{
		$('#specialBox').live('mouseover', function(){
			$('#dealHeaderImage').find('img:first-child').hide();
			$('#dealHeaderImage').find('img:last-child').show();
		});
		
		$('#specialBox').live('mouseout', function(){
			$('#dealHeaderImage').find('img:last-child').hide();
			$('#dealHeaderImage').find('img:first-child').show();
		});
	}
});
