//<![CDATA[

function enableNavigation() {
	
	$( "#navmenu li" ).each( function( intIndex ){
		
		$( this ).bind (
			"mouseover",
			function(){
				$( this ).addClass("iehover");
				return false;
			}
		);
		
		$( this ).bind (
			"mouseout",
			function(){
				$( this ).removeClass("iehover");
				return false;
			}
		);
	});

}


$(document).ready( function () {
	enableNavigation();
});

//]]>
