$(document).ready(function() {
	$("#tab_pager").tablesorter({widthFixed: true, widgets: ['zebra']}).tablesorterPager({container: $("#pager") });
	$(".lightb a").fancybox();
	
	
	$('#slider').coinslider({
	width: 621, // width of slider panel
	height: 239, // height of slider panel
	spw: 7, // squares per width
	sph: 5, // squares per height
	delay: 5000, // delay between images in ms
	sDelay: 30, // delay beetwen squares in ms
	opacity: 0.8, // opacity of title and navigation
	titleSpeed: 500, // speed of title appereance in ms
	effect: 'random', // random, swirl, rain, straight
	navigation: true, // prev next and buttons
	links : false, // show images as links 
	hoverPause: true // pause on hover						
	});
	$(".programa_fechas a").click(function(){
		if(!$(this).hasClass("active")){
			var id = $(this).attr("id"); 
			$(".programa_fechas a.active").removeClass("active");
			$(this).addClass("active");
			$(".programa_content .active").slideUp("slow", function(){
				$(".programa_content .active").removeClass("active");
				$("#p"+id).slideDown("slow", function(){ $("#p"+id).addClass("active") });						
			})
			
		}	
	});

});
