$(document).ready(function () {
	$('a.itemMenuActual').parent().css('background',"url('images/fondoBlanco20.png') repeat");
	
	$('a.itemMenu').hover(
		function () {
			if (!$(this).hasClass('itemMenuActual')) {
				$(this).parent().css('background',"url('images/fondoNegro10.png') repeat");
			}
		}, function () {
			if (!$(this).hasClass('itemMenuActual')) {
				$(this).parent().css('background','none');
			}
		}
	);
});
