$(document).ready(function(){
	$('#navigation > li').mouseover(function()
	{
		$(this).find('ul').show();
		$(this).css('margin-top', - $(this).find('ul').outerHeight());
	});
	
	$('#navigation > li').mouseout(function()
	{
		$(this).css('margin-top', '0')
		.find('ul').hide();
	});
	
	$('#left_navigation > dt').not(':first').mouseover(function()
	{
		$(this).css('background-position', '0 0')
		.find('ul').show();
	});
	
	$('#left_navigation > dt').not(':first').mouseout(function()
	{
		$(this).css('background-position', '0 -24px')
		.find('ul').hide();
	});
	
	$('#select_boutique').change(function(){
		location.href = '/boutiques/'+$(this).val()+'.html';
	});
	
	$('#select_theme').change(function(){
		location.href = '/boutiques/'+$(this).val();
	});
	
	$('#select_boutique').selectBox();
	$('#select_theme').selectBox();
	
	Cufon.replace('#navigation .title',{ fontFamily: 'Myriad Web Pro', letterSpacing: '2px'});
	
	
	//moteur de recherche
	var initVal = 'Rechercher...';
	
	$('#search_input').focus(function(){
		$(this).val('');
	});
	$('#search_input').blur(function(){
		if($(this).val()=='')
			$(this).val(initVal);
	});
	
});
