$(function() {	
	//NO CARGAR DENTRO DE FRAMES!!
	if (self.parent.frames.length != 0) self.parent.location=document.location.href;

	// Marquem el menú del qual depen aquest contingut com a seleccionat
	$('#nav li[rel='+idmenu+']:first a').addClass('selected')
	$('.imatges').find("img").css("cursor","pointer").click(function() {window.open($(this).src());});
	$('.imatge').find("img").css("cursor","pointer").click(function() {window.open($(this).attr("src"));});

	if ($.browser.msie) {
		// IE 6 no suporta el :hover sobre elements que no són links (a)
		$('#nav li')
			.hover(
				function() {$(this).addClass("sfhover")}, 
				function() {$(this).removeClass("sfhover")})
	}
	
	$('.nivell1')
		.hover(function() { 
					var img = $(this).find('.link_menu_nivell1 img');
					var src = img.attr('src');
					if (src && (src.indexOf("_on.gif") == -1))
						img.attr('src', src.replace(".gif", "_on.gif"));
				},
				function() { 
					var img = $(this).find('.link_menu_nivell1 img');
					var src = img.attr('src');
					if (src && (src.indexOf("_on.gif") != -1))
						img.attr('src', src.replace("_on.gif", ".gif"));
				});

});

function abrir(pagina,opciones) {
	window.open(pagina,"",opciones);
	//return false;
}

