$(document).ready(function(){

	$('.cat .photos').live('click', function(){
		lien=$(this).siblings('h2').children('a').attr('href');
		window.location.href=lien;
	});
	
	 $('#departement').live('change', function(){
		$(this).submit();
	});
	 
	 $('#departement input[type=submit]').hide();
	 
	 $('img#ok').live('click', function(){
		$.fancybox({
			'overlayOpacity' : 0.8,
			'overlayColor': '#003408',
			'content':'<h2>Veuillez renseignez votre département pour valider votre commande.</h2>',
			'showNavArrows':false
		});
	});
	 
	 if($('.listeCat').length>0){
		posRoot=$('.listeCat').scrollTop();
	 	$(window).scroll(function(){ 
			hauteur=$('.listeCat').height();
			leScroll = (document.documentElement.scrollTop || document.body.scrollTop);
			//alert('!');
			if(leScroll+hauteur+posRoot+150<$('#bas').position().top){
				$('.listeCat').css('top', leScroll-posRoot);
			}
		});
	 }
});
