// Altura de las columnas
	$(document).ready(function() {
	    setHeight('.col');  
	});  
  	var maxHeight = 0;  
	function setHeight(col) {  
	    col = $(col);  
	    col.each(function() {          
	        if($(this).height() > maxHeight) {  
	            maxHeight = $(this).height();;  
	        }  
	    });  
	    col.height(maxHeight);  
	}


// Sliders en portada ("presentacion" y "artistas")	
	$(document).ready(function(){
	$(".btn-slide").click(function(){
		$("#presentacion").slideToggle("normal");
		$(this).toggleClass("active"); return false;
		});
	});
	$(document).ready(function(){
	$(".btn-slide2").click(function(){
		$("#artistas").slideToggle("normal");
		$(this).toggleClass("active"); return false;
		});
	});

	
// Slides carteles
	$(document).ready(function(){
		$('.boxgrid.slidedown').hover(function(){
			$(".cover", this).stop().animate({top:'-257px'},{queue:false,duration:600});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
		});
	});


// Links externos
	$(function(){
	$("a[rel*='external']").click(function(){
   	this.target = "_blank";
	});
	});