$(document).ready(function()
	{
	$(function () {
			
//////////When you pass over me, I'm shining like the sun
		$('#menu-principal ul li').find('a').each(function () {
			var $img = $('img.hover', this).css("opacity", "0");
			var $img = $('img.hover', this).css("display", "block");
			$(this).hover(function () {
				$img.stop().fadeTo(150, 1);
			}, function () {
				$img.stop().fadeTo(250, 0);
			});
		});
		$('#menu-principal ul ul li').find('a').each(function () {
			var $img = $('img.hover', this).css("opacity", "0");
			var $img = $('img.hover', this).css("display", "block");
			$(this).hover(function () {
				$img.stop().fadeTo(150, 1);
			}, function () {
				$img.stop().fadeTo(250, 0);
			});
		});

	});	
});