$(document).ready(function(){
	if ($.browser.msie && $.browser.msie < 7) {
		$('#MENU a').hover(
			function(){ $(this).css({'background-image':'url(images/fondo_menu_over.png)'}); }, 
			function(){ $(this).css({'background-image':'url(images/fondo_menu.png)'}); }
		);
	}						   
}); 

