$(document).ready(function() {		
				$('.select').mouseover(function(){
					$(this).children('.select_class').attr("src","images/form-select-hover.png");
					$(this).css('cursor','pointer');
				});
				
				$('.select').mouseleave(function(){
					$(this).children('.select_class').attr("src","images/form-select.png");
					$(this).children("ul").hide()
				});
				
				$('.select > img,.select > span').click(function(){
					$(this).parent().children("ul").slideDown('fast');
				});	
				
				$('.select_class span').click(function(){
					$(this).parent(1).children("ul").slideToggle('medium');
				});					
				
				$('.the_select > a,.the_select > li').click(function () {
					
					var formdata = $(this).children().attr('rel');
					$(this).parent().parent().children("ul").hide();
					$(this).parent().parent().children("input").val(formdata);
					$(this).parent().parent().children("span").html($(this).text());
					
					return false;
				});				

			
			
			$('#btn_rechercher').click(function(){
				
				$('#search').submit();
				
			});	
}); 
