// Fonction qui charge la page clickout_partenaire.html
 
var hostname = window.location.hostname;
var ctl_dir = "http://" + hostname;

$( document ).ready( 
	function()
	{	
		$( '.lien_partenaire' ).click(
			function()
			{ 
				var id_partenaire = $( this ).attr( 'id' );
				jQuery.get( ctl_dir + '/clickout_partenaire,' + id_partenaire + '.html' , { }, function() {} , {} ); 
			}
		);

		$( "#recherche_submit" ).click(
			function() 
			{
				$( "#recherche_form" ).submit();
			}
		);
		
		$( "#recherche :input" ).focus(
			function() 
			{
				this.select();
			}
		);
	}
	
);