$(document).ready(function() {
	var hash = window.location.hash.substr(1);
	var href = $('#nav li a').each(function(){
		var href = $(this).attr('href');
		if(hash==href.substr(0,href.length)){
			var toLoad = hash+'.html #pestanyes';
			$('#pestanyes').load(toLoad)
		}
	});

$('#nav li a').click(function(){

var toLoad = $(this).attr('href')+' #pestanyes';
$('#pestanyes').load(toLoad);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length);
return false;

});

});
