$(document).ready(function() {
	
	$('#s').val("Rechercher idée cadeau");
	
	$('#s').focus(function(){
		$(this).val("");
	});

	$('#s').blur(function(){
		if($(this).val() == '')
		{
			$(this).val("Rechercher idée cadeau");
		}
	});
	
	 //$( '#moving_sidebar' ).scrollFollow();

}); 



function changeDisplay(type) {

	// Set the alert display
	setCookie("view_type_alert","FALSE",365);

	// Set the view type cookie 
	setCookie("view_type",type,365);
	
	// Reload the page
	window.location.reload();
}


function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";path=/;expires="+exdate.toUTCString());+';';
}


 
