﻿//<![CDATA[
$(document).ready(function (){
	/***************************Inici Gestió Escenes******************************/
	var escenaAct = 0;
	var numEscenes = 10;
	var mobileBrowser = true;
	if( (navigator.userAgent.match(/iPad/i)  == null) &&
				(navigator.userAgent.match(/iPhone/i)  == null) &&
				(navigator.userAgent.match(/iPod/i)  == null) &&
				(navigator.userAgent.match(/Android/i)  == null) &&	
				(navigator.userAgent.match(/BlackBerry/i)  == null) &&	
				(navigator.userAgent.match(/Mobile/i)  == null)) mobileBrowser = false;	
	
	function vesEscena(escena, callback){
		if (callback == undefined){
			callback = function(){};
		}
		if(escenaAct != escena){
			escenaAct = escena;
			classAct = 'escena' + escenaAct
			for(i=0; i< numEscenes; i++){
				if(i!= escenaAct){
					$('.escena' + i).each(
						function(){	if(!$(this).hasClass(classAct)) $(this).fadeOut()}
					);
				}
			}
			if($('.' + classAct + ':first').length){
				$('.' + classAct + ':gt(0)').fadeIn();
				$('.' + classAct + ':first').fadeIn(
					function(){
						callback();
						escenes[escenaAct]();
					}
				);
			}else{
				callback();
				escenes[escenaAct]();
			}
		}
	}
	
	function intercanviaEscena(escena, callback){
		if(escena == escenaAct){
			escena = 0;
		}
		vesEscena(escena,callback);
	}
	
	//No IE excepte v > 9 (encara per arribar)
	 if ((!$.browser.msie) || (parseInt($.browser.version[0])>= 9)){
	    $('.rodo1').corner('10px');
	    $('.rodo2').corner('5px');
	 }
	
	//Indica què canvia a cada escena
	escenes = [
		function(){
			'#menu_serveis_espai',
			'#menu_quiromassatge',	
			'#menu_tailandes',
			'#menu_ayurvedic',
			'#menu_shiatsu',
			'#menu_acupuntura',
			'#menu_reiki',	
			'#menu_flors_bach',
			'#menu_naturopatia',
			'#menu_tapping'
		},
		function(){
			'#menu_calendari',	
			'#menu_activitats_gratuites',
			'#menu_radio_prensa',
			'#menu_facebook'	
		},
		function(){
			'#menu_hatha_ioga',
			'#menu_kundalini',
			'#menu_embarassades',
			'#menu_ioga_pilates',
			'#menu_meditacio',
			'#menu_chi_kung',
			'#menu_dansa_venter',
			'#menu_benestar_empresa'
				
		},
		function(){
			'#menu_filosofia',
			'#menu_horaris',	
			'#menu_equip',	
			'#menu_on_som',
			'#menu_funcionament',
			'#menu_pagines'	
			//'#menu_fotos'		
		},
			function(){
			'#ShankPrakshalana',
			'#reiki',	
			'#kirtan',	
			'#vacances_agost_11'	
		},
			function(){	
		},
			function(){	
		},
			function(){	
		},
			function(){	
		},
			function(){	
		}
		
	]
		
	//Pas a escena 0
	$('.tancar,.tancar_taller,.tancar_destacats').click(
		function(){	
			intercanviaEscena(0);
		}
	)
	
	//Pas a escena 1
	$('#boto_espai_terapeutic, #boto_espai_terapeutic_act').click(
		function(){	
			intercanviaEscena(1);
		}
	)
	
	//Pas a escena 2
	$('#boto_tallers_conferencies,#boto_tallers_conferencies_act').click(
		function(){		
			intercanviaEscena(2);
		}
	)
	//Pas a escena 3
		$('#boto_activitats,#boto_activitats_act').click(
		function(){
			intercanviaEscena(3);
		}
	)
	
	//Pas a escena 4
	$('#boto_taller,#boto_taller_act').click(
		function(){
			intercanviaEscena(4);
		}
	)
	
	//Pas a escena 5
	$('#destacats1').click(
		function(){
			intercanviaEscena(5);
		}
	)
	
	//Pas a escena 6
	$('#destacats2').click(
		function(){
			intercanviaEscena(6);
		}
	)
	
	//Pas a escena 7
	$('#destacats3').click(
		function(){
			intercanviaEscena(7);
		}
	)
	
	//Pas a escena 8
	$('#destacats4').click(
		function(){
			intercanviaEscena(8);
		}
	)
	//Pas a escena 9
	$('#guinyo').click(
		function(){
			intercanviaEscena(9);
		}
	)
	
	
	/****************************Fi Gestió Escenes********************************/

	
		
	function loadContent(divObj, target, url){
		/*divObj.parent().find('.menu_background_sel > .menu_act').fadeOut();
		divObj.parent().find('.menu_background_sel > .menu_desact').fadeIn();
		divObj.parent().find('.menu_background_sel').removeClass('menu_background_sel').animate({backgroundColor:''});;
		divObj.addClass('menu_background_sel');
		divObj.find('.menu_act').fadeIn();
		divObj.find('.menu_desact').fadeOut();
		divObj.animate({backgroundColor:''});*/
		$(target).fadeOut();
		$(target).load(url,
			function() {
				$(target).slideDown();
			}
		);
	}
		
		
	//Obre Espai terapeutic
	$('#menu_serveis_espai').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_espai_terapeutic', 'html/serveis_espai.html');
		}
	)
	//Obre Quiromassatge
	$('#menu_quiromassatge').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_espai_terapeutic', 'html/quiromassatge.html')
		}
	)
	//Obre Massatge Tailandés
	$('#menu_tailandes').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_espai_terapeutic', 'html/tailandes.html')
		}
	)
	//Obre ayurvedic
	$('#menu_ayurvedic').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});			
			loadContent($(this), '#finestra_espai_terapeutic', 'html/ayurvedic.html')
		}
	)
	
	//Obre Shiatsu
	$('#menu_shiatsu').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_espai_terapeutic', 'html/shiatsu.html')
		}
	)
	//Obre Acupuntura
	$('#menu_acupuntura').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_espai_terapeutic', 'html/acupuntura.html')
		}
	)
	//Obre Reiki
	$('#menu_reiki').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});			
			loadContent($(this), '#finestra_espai_terapeutic', 'html/reiki.html')
		}
	)
	//Obre terapia floral
	$('#menu_flors_bach').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});			
			loadContent($(this), '#finestra_espai_terapeutic', 'html/flors_bach.html')
		}
	)
	//Obre Naturopatia
	$('#menu_naturopatia').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			$('#menu_tapping').animate({backgroundColor:'#FF9600'});			
			loadContent($(this), '#finestra_espai_terapeutic', 'html/naturopatia.html')
		}
	)
	//Obre Tapping
	$('#menu_tapping').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_naturopatia').animate({backgroundColor:'#FF9600'});
			$('#menu_serveis_espai').animate({backgroundColor:'#FF9600'});
			$('#menu_quiromassatge').animate({backgroundColor:'#FF9600'});
			$('#menu_reiki').animate({backgroundColor:'#FF9600'});
			$('#menu_flors_bach').animate({backgroundColor:'#FF9600'});
			$('#menu_tailandes').animate({backgroundColor:'#FF9600'});
			$('#menu_ayurvedic').animate({backgroundColor:'#FF9600'});
			$('#menu_acupuntura').animate({backgroundColor:'#FF9600'});
			$('#menu_shiatsu').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_espai_terapeutic', 'html/tapping.html')
		}
	)
	
	
	//Obre calendari
	$('#menu_calendari').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_cap_any').animate({backgroundColor:'#FF9600'});
			$('#menu_activitats_gratuites').animate({backgroundColor:'#FF9600'});
			$('#menu_radio_premsa').animate({backgroundColor:'#FF9600'});
			$('#menu_facebook').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_tallers_conferencies', 'html/calendari.html')
		}
	)
	
	//Obre activitats gratuites
	$('#menu_activitats_gratuites').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_cap_any').animate({backgroundColor:'#FF9600'});
			$('#menu_calendari').animate({backgroundColor:'#FF9600'});
			$('#menu_radio_premsa').animate({backgroundColor:'#FF9600'});
			$('#menu_facebook').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_tallers_conferencies', 'html/activitats_gratuites.html')
		}
	)
	
	//Obre Radio premsa
	$('#menu_radio_premsa').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_cap_any').animate({backgroundColor:'#FF9600'});
			$('#menu_calendari').animate({backgroundColor:'#FF9600'});
			$('#menu_activitats_gratuites').animate({backgroundColor:'#FF9600'});
			$('#menu_facebook').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_tallers_conferencies', 'html/radio_premsa.html')
		}
	)
	//Obre facebook
	$('#menu_facebook').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_cap_any').animate({backgroundColor:'#FF9600'});
			$('#menu_calendari').animate({backgroundColor:'#FF9600'});
			$('#menu_activitats-gratuites').animate({backgroundColor:'#FF9600'});
			$('#menu_radio_premsa').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_tallers_conferencies', 'html/facebook.html')
		}
	)
	
	//Obre hatha ioga
	$('#menu_hatha_ioga').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/hatha_ioga.html')
		}
	)
	//Obre kundalini
	$('#menu_kundalini').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/kundalini.html')
		}
	)
	//Obre embarassades
	$('#menu_embarassades').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/embarassades.html')
		}
	)
	
	//Obre Ioga Pilates
	$('#menu_ioga_pilates').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/ioga-pilates.html')
		}
	)
	
	//Obre meditacio
	$('#menu_meditacio').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/meditacio.html')
		}
	)
	
	//Obre Chi kung
	$('#menu_chi_kung').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/chi_kung.html')
		}
	)

	//Obre dansa ventre
	$('#menu_dansa_ventre').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_benestar_empresa').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/dansa_ventre.html')
		}
	)
//Obre benestar_empresa
	$('#menu_benestar_empresa').click(
		function(){	
			$(this).animate({backgroundColor:'#FFC26A'});
			$('#menu_hatha_ioga').animate({backgroundColor:'#FF9600'});
			$('#menu_ioga_pilates').animate({backgroundColor:'#FF9600'});
			$('#menu_embarassades').animate({backgroundColor:'#FF9600'});
			$('#menu_meditacio').animate({backgroundColor:'#FF9600'});
			$('#menu_kundalini').animate({backgroundColor:'#FF9600'});
			$('#menu_dansa_ventre').animate({backgroundColor:'#FF9600'});
			$('#menu_chi_kung').animate({backgroundColor:'#FF9600'});
			loadContent($(this), '#finestra_activitats', 'html/benestar_empresa.html')
		}
	)
	
	//Obre Video
	$('#menu_video').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/video_centre.html')
		}
	)	
	//Obre filosofia
	$('#menu_filosofia').click(
		function(){	
			loadContent($(this), '#finestra_taller', 'html/filosofia.html');
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'})
			
		}
	)
	
	//Obre horaris
	$('#menu_horaris').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_filosofia').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/horaris.html')
		}
	)
	
	//Obre equip
	$('#menu_equip').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_filosofia').animate({backgroundColor:'#879573'});
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/equip.html')
		}
	)
	//Obre on_som
	$('#menu_on_som').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_filosofia').animate({backgroundColor:'#879573'});
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/on_som.html')
		}
	)
	//Obre funcionament
	$('#menu_funcionament').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_filosofia').animate({backgroundColor:'#879573'});			
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/funcionament.html')
		}
	)
	//Obre pagines
	$('#menu_pagines').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_filosofia').animate({backgroundColor:'#879573'});			
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_fotos').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/pagines.html')
		}
	)
	//Obre fotografies
	$('#menu_fotos').click(
		function(){	
			$(this).animate({backgroundColor:'#FFF'});
			$('#menu_video').animate({backgroundColor:'#879573'});
			$('#menu_filosofia').animate({backgroundColor:'#879573'});
			$('#menu_horaris').animate({backgroundColor:'#879573'});
			$('#menu_equip').animate({backgroundColor:'#879573'});
			$('#menu_on_som').animate({backgroundColor:'#879573'});
			$('#menu_funcionament').animate({backgroundColor:'#879573'});
			$('#menu_pagines').animate({backgroundColor:'#879573'});
			loadContent($(this), '#finestra_taller', 'html/fotos.html')
		}
	)	
	
	//Obre Destacats Shank Prakshalana
	$('#destacats1').click(
		function(){	
			$('#finestra_destacats1').show();
			$('#finestra_destacats2').hide();
			$('#finestra_destacats3').hide();
			$('#finestra_destacats4').hide();
		}
	)	
		
	//Obre Destacats Reiki
	$('#destacats2').click(
		function(){	
			$('#finestra_destacats1').hide();
			$('#finestra_destacats2').show();
			$('#finestra_destacats3').hide();
			$('#finestra_destacats4').hide();
		}
	)	
	
	//Obre Destacats Kirtan
	$('#destacats3').click(
		function(){	
			$('#finestra_destacats1').hide();
			$('#finestra_destacats2').hide();
			$('#finestra_destacats3').show();
			$('#finestra_destacats4').hide();
		}
	)
	
	//Obre Destacats Reiki
	$('#destacats4').click(
		function(){	
			$('#finestra_destacats1').hide();
			$('#finestra_destacats2').hide();
			$('#finestra_destacats3').hide();
			$('#finestra_destacats4').show();
		}
	)

	
});
//]]>
