$(document).ready(function()
{
	//pestañas
	$("a.tab").click(function () {
		// switch all tabs off
		$(".active").removeClass("active");
		// switch this tab on
		$(this).addClass("active");
	// slide all content up
		$(".content").hide();
		// slide this content up
		var content_show = $(this).attr("title");
		$("#"+content_show).show();
	});
	// galeria
	$("#fotos").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev"
	});
	// fotos apreta miniatura y aparece en la grande
	$("#fotos a").each(function(){
		 var href = $(this).attr("href");
		 $(this).attr({
		 href: "javascript:void()"
	 });
	 $(this).click(function(){
		 $(".fotoGrande").html("<img src=' " + href + "'>");
		 });
	 });
	// seleccion de tab al hacer click
	
	
	
	
	
	
	
	
	
	
	
	
	
});
