
$(document).ready(function(){
	//per la capa contenido perque sempre faci scroll a top =0
    $(function(){
        $("#wrapper").prepend('<input type="text" id="focus-stealer" />');
        $("#focus-stealer").focus(); 
    });
});

$(document).ready(function(){
	//References
	var sections = $("#navcontainer li");
	var content = $("#main");
	content.load("templates/tab-palau.php");

	//Manage click events
	sections.click(function(){
		//load selected section
		switch(this.id){
			case "home":			
				content.load("templates/tab-palau.php");
				break;
			case "serveis":			
				content.load("templates/tab-serveis.php");
				break;
			case "noticies":			
				content.load("templates/tab-noticies.php");
				break;
			case "galeria":			
				window.open("galeries.php?lang=ca");
				break;
			case "contacte":			
				content.load("templates/tab-contacte.php");
				break;
			default:
				break;
		}
	});

});

