jQuery(document).ready(function(){
	$("#menu-cursos div").hover(
		function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("o.")[0];
			$(this).find("img").attr({src: "" + origen + "x.gif"});
			$(this).find("p").animate({opacity: 1, top: "500"}, {queue:true, duration:400, complete: function(){
								$(this).attr({"style": 'display:inline'});
							}
						}
			);
		}, 
		function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("x.")[0];
			$(this).find("img").attr({src: "" + origen + "o.gif"});
			$(this).find("p").animate({opacity: 0, top: "490"}, {queue:false, duration:400, complete: function(){
								$(this).attr({"style": 'display:none'});
							}
						}
			);
		});
});
