// MENU GENERAL

var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('slow');
	} //if
} //checkHover

$(document).ready(function() {
	
	/*$('#nav > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('slow');
			obj = null;
		} //if
		$(this).find('ul').slideUp('fast');
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout("checkHover()",30);
	});*/
	
	
	 $("a.tagCloudLink").attr('href','/wordpress/wp-content/themes/guiadeldeporte.com/tagCloud.inc.php?height=450&amp;width=700');
	 $("a.spainMap").attr('href','/wordpress/wp-content/themes/guiadeldeporte.com/spainMapSingle.inc.php?height=450&width=700');
	
});




// MENU PAGES

//$(document).ready(function(){
//	$("dd:not(:first)").hide();
//	$("dt a").click(function(){
//		$("dd:visible").slideUp("slow");
//		$(this).parent().next().slideDown("slow");
//		return false;
//	});
//});