$(document).ready(function() {
	/* cufon */
	Cufon.replace('h1, #menu-left-sidebar ul.nav, #menu-left-sidebar h3, #header #menu-cabecera-main ul li, #main .bloc h3 a, #main h2, #main h2 a, #footer .contact .contact-form h3, #footer .contact .contact-form h3 a, #main h3.cat a, #main h3 a, #main h2 a ', {fontFamily:'advent'});

	
    /* auto height*/
	setHeight('.col');

	// Tab 
	$(".tab_content").hide();
	$("ul.tabs li:first").addClass("active").show();
	$(".tab_content:first").show();
	
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide(); 
		var activeTab = $(this).find("a").attr("href"); 
		$(activeTab).fadeIn();
		return false;
	});
	
	
	// Banner slide
	$("#slideshow").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		prev: '#prev',
		next: '#next'
	});
	

});


/* column height*/
var maxHeight = 0;
function setHeight(column) {
    column = $(column);
    column.each(function() {       
        if($(this).height() > maxHeight) {
            maxHeight = $(this).height();;
        }
    });
    column.height(maxHeight);
}


