$(document).ready(function(){
		$(".carouseller").carouFredSel({
			height:108,
			scroll: {
				pauseOnHover: true,
				items: 1
			},
			auto: 3000,
			prev:{
				button:"#car_prev"
			},
			next:{
				button:"#car_next"
			},
			circular:false
		});
		
		$(".carouseller a").click(function(){
			
			$.fancybox(["images/photos_produits/personal/"+$(this).children("img").attr("id")],
					{
						'padding'			: 0,
						'transitionIn'		: 'fade',
						'transitionOut'		: 'fade',
						'type'              : 'image',
						'changeFade'        : 'fast',
						'interval'			: 3000
					}
			);
		});

		
		//TOP MENU HOVER FUNCTION
		$(".topmenu a").hover(function(){
			$(this).parent().addClass("isHover");
		},
		function(){
			$(this).parent().removeClass("isHover");
		});
});
