// JavaScript Document
addLoadEvent(function(){  	
		
		//Si estamos en sala de prensa exite el hidden del buscador de NP y cargamos los eventos
		if (document.getElementById("idTwitter")!=null)
		{
			var ruta = window.location;
			document.getElementById("idTwitter").href+=escape(ruta);					
		}
		if (document.getElementById("idLinkedin")!=null)
		{
			var ruta = window.location;
			document.getElementById("idLinkedin").href+=escape(ruta);					
		}
		if (document.getElementById("idDelicious")!=null)
		{
			var ruta = window.location;
			document.getElementById("idDelicious").href+=escape(ruta);	
		}
		if (document.getElementById("idMeneame")!=null)
		{
			var ruta = window.location;
			document.getElementById("idMeneame").href+=escape(ruta);		
		}
		if (document.getElementById("idFacebook")!=null)
		{
			var ruta = window.location;
			document.getElementById("idFacebook").href+=escape(ruta);
		}
		if (document.getElementById("idYahoo")!=null)
		{
			var ruta = window.location;
			document.getElementById("idYahoo").href+=escape(ruta);	
		}
		if (document.getElementById("idMail")!=null)
		{
			var ruta = window.location; 
			document.getElementById("idMail").href+=escape(ruta);			
		}
				
});
