// JavaScript Document
$(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			 
		});
	}
	// Effacer le contenu du champs recherche lors du clic
	if($("#champs")){
		$("#champs").attr({ value: 'Rechercher...' }).focus(function(){
					if($(this).val()=="Rechercher..."){
						 $(this).val("");
					}
		 }).blur(function(){
					if($(this).val()==""){
						 $(this).val("Rechercher...");
					}
		 });
	}
	else{
		("#champs_en").attr({ value: 'Search...' }).focus(function(){
					if($(this).val()=="Search..."){
						 $(this).val("");
					}
		 }).blur(function(){
					if($(this).val()==""){
						 $(this).val("Search...");
					}
		 });
	}
	//fx
	$('#logo,#tel,#plan a').hover(function(){$(this).stop(true,true).fadeTo(150,'0.4')},function(){$(this).stop(true,true).fadeTo(1000,'1')});
	$('.encart').fadeTo(400,'0.75');
	$('.encart').hover(function(){$(this).stop(true,true).fadeTo(150,'1')},function(){$(this).stop(true,true).fadeTo(150,'0.75')});
});
