/*
 * Require jQuery JavaScript Library v1.3.2+
 * http://jquery.com/
 *
 * Copyright © 2010 MBA Multimédia (www.mba-multimedia.com)
 * 
 *
 */

$(document).ready( function(){
		//
		/*jQuery.each(jQuery.browser, function(i, val) {
			if(i=="mozilla" && jQuery.browser.version.substr(0,3)< 1.9) {
				$('head').append ('<link rel="stylesheet" type="text/css" href="/styles/ie7-fix.css"></link>');
			}
		});*/
		if ($('#recherche').length) { 
			$('#recherche input').focus (function() { $(this).addClass ("focus"); });
			$('#recherche input').blur (function() { $(this).removeClass ("focus"); });
		}
		
		if ($("#actualites").length) {
			$("#actualites .ctn .scroll").jHeadline ({intervalTime:4000});
		}
	/*}*/
});


