// Updated: 01-20-2012
$(document).ready(function(){

    /* -------------- LAVA LAMP - MENU -------------- */
    $("#2").lavaLamp({
        fx: "backout",
        speed: 750,
        click: function(event, menuItem) {
            return true;
        }
    });


    /* -------------- INTRO BOX -------------- */
	$(this).delay(15000,function(){
	
	$("#intro").fadeOut(1000, function () {
    	$(this).remove();
		$(".inicio").css("overflow","visible");
		$(".head").css("visibility","visible");
		$(".wraper").css("visibility","visible");
		$(".bottom").css("visibility","visible");
		$(".footer").css("visibility","visible");
      });
	});
	
    $("#intro").click(function () {
      $(this).fadeOut(1000, function () {
        $(this).remove();
		$(".inicio").css("overflow","visible");
		$(".head").css("visibility","visible");
		$(".wraper").css("visibility","visible");
		$(".bottom").css("visibility","visible");
		$(".footer").css("visibility","visible");
      });
    });


    /* -------------- BANNER: Afíliese con nosotros -------------- */
    if( $('.bottom .content .right').length > 0 ){
        $('.bottom .content .right').fancybox({
            width   : 260,
            height  : 290
        });
    }


    /* -------------- PLANES & CONVENIOS -------------- */
    if( $('.menu-planes').length > 0 ){

        $('.menu-planes a').click(function(){
            if( !$(this).parent().hasClass('active') ){

                var i = $(this).attr('rel');

                $('.content .active').fadeOut(200, function(){
                    $(this).removeClass('active');
                    $('.content #' + i).fadeIn(300).addClass('active');
                });

                $('.menu-planes li').removeClass('active');
                $(this).parent().addClass('active');
            }

            return false;
        });
    }


    /* -------------- TESTIMONIALES -------------- */
    if( $('.testimonio-box').length > 0 ){
        $('.tLightBox').fancybox({
            afterLoad   :function(){
                $('#fancybox-loading').detach();
            }
        });
    }


    /* -------------- VIDEOS -------------- */
    if( $('.video-big').length > 0 ){
        $('.video-big a').fancybox({
            width   : 500,
            height  : 398,
            helpers : { overlay : null }
        });
    }

    if( $('.video-tmb').length > 0 ){
        $('.video-tmb a').fancybox({
            width   : 385,
            height  : 320,
            helpers : { overlay : null }
        });
    }






}); //end
