$(function (){
	if( $('#search_query').attr('value')=='' )
		$('#search_query').attr('value', 'Rechercher');

	$('#search_query').focus(function() {
		if( $('#search_query').attr('value')=='Rechercher' )
			$('#search_query').attr('value', '');
	});
	$('#search_query').blur(function() {
		if( $('#search_query').attr('value')=='' )
			$('#search_query').attr('value', 'Rechercher');
	});
	
	$('a#plus_dinfo').click(function() {
		$('#infos_produit').slideToggle('slow');
		return false;
	});
	
	var newsl = $('div#newsletter_block').html();
	$('div#newsletter_block').empty();
	$('div#newsletter_container').append(newsl);
	
	
	
	$('#reseaux_sociaux ul li a').click(function() {
		window.open($(this).attr('href'));
		return false;
	});
});
