
// $LastChangedBy: cpaulus $
// $LastChangedDate: 2011-12-17 09:47:41 +0100 (Sam 17 déc 2011) $
/**
 * MarquePage.net - agence communication dijon - http://www.marquepage.net 
 */

;(function($) {
	
	$(document).ready(function() {
		
		/**
		 * si reload et champ recherche non vide,
		 * ne pas afficher la loupe
		 */
		if ($('#recherche').val() != '') {
				$(this).addClass('hide_loupe');
			}
		
		/**
		 * En entrée dans le champ de recherche,
		 * supprimer la loupe
		 */
		$('#recherche').focusin( function () {
			if (!$(this).hasClass('hide_loupe')) {
				$(this).addClass('hide_loupe');
			}			
		});
		
		/**
		 * Si sortie, et champ de recherche vide,
		 * reafficher la loupe
		 */
		$('#recherche').focusout( function () {
			if ($(this).hasClass('hide_loupe') &&
				$(this).val() == '') {
				$(this).removeClass('hide_loupe');
			}
		});
		
		//var v_h = $('#ventre').height();
		//var n_h = $('#navigation').height();
		//
		//if (v_h < n_h) {
		//	$("#ventre").height(n_h);
		//}
		
		var $h1 = $('#estomac').height();
		var $h2 = $('#navigation').height();
		
		// fait un max() sans appeler la lib math
		var $h = ($h1 >= $h2) ? $h1 : $h2;
		// si estomac trop petit, laisser de la
		// place pour les liens sociaux
		var $p = ($h1 <= $h2) ? 100 : 0;
		$h += $p;
		
		/* alert('le h est : '+$h); */
		
		$('#navigation').height($h);
		$('#estomac').height($h);

	});
	
})(jQuery);

