$(function() {

	var tapez = 'Tapez votre recherche ici';

	if( $('#search_query').attr('value')=='' )
		$('#search_query').attr('value', tapez);

	$('#search_query').focus(function() {
		if( $('#search_query').attr('value')==tapez )
			$('#search_query').attr('value', '');
	});

	$('#search_query').blur(function() {
		if( $('#search_query').attr('value')=='' )
			$('#search_query').attr('value', tapez);
	});


	$('div#categories_block_left li.cat_selected').parents().each( function() {
		if ($(this).is('ul'))
			$(this).css('display', 'block');
		if ($(this).is('li'))
			$(this).addClass('cat_selected');
	});



	$('div#left_column div#gros_boutons a').hover(function() {
		$(this).stop().animate({opacity: 0.7}, 'slow');
	}, function() {
		$(this).stop().animate({opacity: 1}, 'slow');
	});
	
	
	$('div#mybigcart').click(function() {
		var lien = $(this).find('a').attr('href');
		window.location = lien;
	});
	
	
	$('div#more_info_sheets table tr:first').addClass('prem');
	
	if($('#editorial_block_center').length > 0) {
		$('body').css('background-position', '0 20px');
	}

});




