$(document).ready(function() {
	$("a.thickbox, a[rel='lightbox']").fancybox({
		'hideOnContentClick': false,
		imageScale : true
	}); 	
	$("a#box_ami").fancybox({
		frameWidth : 300,
		frameHeight : 200
	}); 	
	if(document.all){
		$("a#box_fav").click(function(){
			window.external.AddFavorite(location.href, document.title);
		});
	}else{	
		$("a#box_fav").fancybox({ 
			'hideOnContentClick': true,
			frameWidth : 400,
			frameHeight : 100			 
		});
	}
	
	$('.menuVertical li ul:not(ul.selected)').hide();	
	
	$("#btn_show").click(function(){
		$(".footer").animate({height: "220px"});
		$(".panel_button").toggle();
	});		
	$("#btn_hide").click(function(){
		$(".footer").animate({height: "8px"});
		$(".panel_button").toggle();
	});
	
	$('#logo,.devis a,.tpl-listing img,.btn-devis,.picto').hover(function() { 
   		$(this).stop().animate({ opacity: '0.7' }, 250);
  	}, function() {
    	$(this).stop().animate({ opacity: '1' }, 250);
   	});
	
	
	
	
});
