//<![CDATA[
$(document).ready(function(){

	//cargamos plugin facebook con validación w3c
	$('a.iframe').each(
		function (i) {
			$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "'  frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:100px; height:21px;' allowTransparency='true'></iframe>");
		}
	);
	
	//iniciamos pretty
	$("a[rel^='prettyPhoto']").prettyPhoto();

	// Decimos que todas los links con ese rel, se habran en una ventana nueva 
	$("a[rel=nueva_ventana]").click(function(){window.open($(this).attr('href'));return false;});
	menuPrincipal();
});

//----------------------------------------------------------------------------
//CONTROL DEL MENÚ PRINCIPAL
//----------------------------------------------------------------------------
function menuPrincipal()
{
	$('li.menu_padre').unbind('mouseenter');
	$('li.menu_padre').unbind('mouseleave');
	
	$('li.menu_padre').mouseenter(function(){
	
		var enlace	=	$(this).attr("id");
		var idA	=	enlace.split('_');
		
		//pongo en On especial

		mostrar(parseInt(idA[1]));
	});
	
	$('li.menu_padre').mouseleave(function(){
		
		var enlace	=	$(this).attr("id");
		var idA	=	enlace.split('_');
		
		//quito en On especial

		esconder(parseInt(idA[1]));
		
	});
}


function mostrar(num) 
{
	
	//desplego el menu
		$("#submenu_"+num).css('display','block');
		
		/*$('li a.nivel2').unbind('mouseenter');
		$('li a.nivel2').unbind('mouseleave');*/
		
}

function esconder(num) 
{
		$("#submenu_"+num).css('display','none');
		
}
//]]>
