jQuery(document).ready(function() {
	
	//Galer?a de im?genes
	jQuery("p#botonera a").click(function() {
		var enlace = this;
		jQuery("#headimage").fadeOut("slow",function(){
			jQuery("#headimage").attr('src', jQuery(enlace).attr("href"));
		});
		
		jQuery("#headimage").fadeIn("slow");
		jQuery("#imgtitle").text(jQuery(this).attr("title"));
		jQuery("p#botonera a").removeClass("selected");
		jQuery(this).addClass("selected");
		return(false);
	});

});

function botonera (){
	jQuery("p#botonera a").click(function() {
		var enlace = this;
	//	jQuery("#headimage").fadeOut("slow",function(){
			jQuery("#headimage").attr('src', jQuery(enlace).attr("href"));
	//	});
		
	//	jQuery("#headimage").fadeIn("slow");
		jQuery("#imgtitle").text(jQuery(this).attr("title"));
		jQuery("p#botonera a").removeClass("selected");
		jQuery(this).addClass("selected");
		return(false);
	});
}

