// JavaScript Document

$(document).ready(function(){


	//BOTIGA
	$(".contmapa").hide(); 

	$("a.mapa").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
	
	
	/*$("#lacita_plegat").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		$("#lacita_text").toggle();
	});*/
	
	//COL·LECCIONS
	$(".desplegable>div").hide();
	
	$(".desplegable h4").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		$(this).toggleClass("desplegat");
		if ($(this).attr("id")=="titol_imaginari") {
			$("#imatge_imaginari").toggle();
		}
		if ($(this).attr("id")=="titol_lacita") {
			$("#lacita_text").toggle();
		}
	});
	
	if (document.location.hash != "") {
		$(document.location.hash).toggleClass("active").next().slideToggle("slow");
		$(document.location.hash).toggleClass("desplegat");
		if (document.location.hash=="#titol_imaginari") {
			$("#imatge_imaginari").toggle();
		}
		if (document.location.hash=="#titol_lacita") {
			$("#lacita_text").toggle();
		}
	}
	
  

});
