$(document).ready(function()
{
	// en xhtml estricte no existeix l'atribut target
	$('a[href$=.pdf], a.external').bind("click", function()
	{
		window.open($(this).attr("href"));
		return false;
	});	

	// menú - enllaç pdf's
	$("#sn4_6 a").hide();
	
	$("#sn4_6 span").css("cursor", "pointer").bind("click", function()
	{
		$(this).parent("li").find("a").slideToggle();
	})
	
	// mapa
	$("#map address").wrap("<div class='address'></div>");
	
	$("#map ul li").hover(
		function()
		{
			$(this).find("div.address").hide().fadeIn("slow");
		},
		function()
		{
			$(this).find("div.address").fadeOut();
		}
	);
	
	
	
	// css 'hacks'
	if( $.browser.safari )
	{
		$("#siteNav").css("top", "120px").css("background-position", "left 81px");
	}
	
	
	if( $.browser.msie )
	{
		$("#map_tarragona").before("<br />");
		$("#map_cuenca").before("<br />");
		
		if( $.browser.version <= 7 )
		{
			$("body.zonasActuacion #contents h2").append(":").css("padding-right", ".5em");
			
			$("#map h3").each(function(i)
			{
				$(this).text( $(this).text() + "," );
				
				$(this).html( String($(this).html()).replace(" ", "&#160;") );
			});
			
			$("#map ul li:last-child h3").each(function(i)
			{
				$(this).html( String($(this).html()).replace(",", ".") );
			});
			
			
			$("#map ul li").hover(
				function()
				{
					$(this).addClass("hover");
				},
				function()
				{
					$(this).removeClass("hover");
				}
			);
		}
	}
	
});
