var curr_pub=0;
var nbpub=0;
var sens=1;
$(document).ready(function()
{
		
	$("#menu ul li a").hover(
	function()
	{	
		if(!$(this).hasClass('activ'))
		{
			$(this).children('.label').stop().animate({marginRight: "10px", color:'hex("#E07B00")'});
			$(this).children('.num').stop().animate({marginRight: "10px", color:'hex("#D0B79D")'});
		}
	},
	function()
	{
		if(!$(this).hasClass('activ'))
		{
			$(this).children('.label').stop().animate({marginRight: "0px", color:'hex("#D0B79D")'});
			$(this).children('.num').stop().animate({marginRight: "0px", color:'hex("#5A4F44")'});
		}
	});
	var i=0;
	$('#refresh_captcha').click(function()
	{
		$.ajax({
			url: "refresh_captcha.php",
			cache: false,
			success: function(html){
				$("#img_captcha").attr('src','captcha.php?i='+i);
			}
		});
		i++;
		return false;
	});
	if(home)
	{
		nbpub=$('#bandeau_shop ul li').length;
		
		$('#bandeau_shop ul li').css('cursor','pointer');
		
		$('#bandeau_shop ul li').click(function()
		{
			window.location.href=$(this).children('.pic_product').attr('href');
		});
		
		setInterval("autopub()",5000);
	}
});

function autopub()
{
	if(curr_pub==nbpub-1)
		sens=-sens;
		
	curr_pub+=sens;
	
	if(curr_pub<0)
	{
		sens=-sens;
		curr_pub=1;
	}

	
	$("#bandeau_shop").stop().scrollTo($($("#bandeau_shop ul li").get(curr_pub)),300,{axis:"x",offset: {left:-3},margin:true});
}

