// JavaScript Document
var idioma = $("html").attr("lang");

$(document).ready ( function() {
	
	$(".titol").each ( function() {
		var a = this.className.split(/\s+/);
		$(this).html('<img src="/site/images/'+idioma+'/'+a[1]+'.gif" alt="'+$(this).text()+'" />');
	});
		
	$(".desplegable").hide();
	
	$("p.intro").append(" <span class=\"punts\">...</span>  ");
	
		$(".desplegable").each(function(i){
	
			$(this).after('<span class="continua-llegint"><a href="#" class="boto-desplega">' + $(this).attr("title") + '</a></span>');
	
		});
	
		$("a.boto-desplega").toggle(function(){
	
			$(this).parent().prev().slideDown("slow");
			$(this).parent().prev().prev().addClass("punts-out");
			if(idioma=="ca"){
				$(this).html("Resum");
			}else if(idioma=="es"){
				$(this).html("Resumen");
			}
			
	
		},function(){
	
			$(this).parent().prev().slideUp("slow");
            $(this).parent().prev().prev().removeClass("punts-out");
            
            $(this).html($(".desplegable").attr("title"));
		});
	
		$("li#contactar a").click(function(){
			
			window.open(this.href, 'PopupEnvia', 'width=514, height=466,menubar=no, location=no, toolbar=no, directories=no, status, resizable=0, scrollbars=no');
			return false;
			
		});
	
		$("li#quisom a").click(function(){
			
			window.open(this.href, 'PopupEnvia', 'width=514, height=466,menubar=no, location=no, toolbar=no, directories=no, status, resizable=0, scrollbars=no');
			return false;
			
		});
		
		$("a#imprimir").click(function(){
			
			print();
			
		});
	
});

	
