$(document).ready(function () {
  
  
    $('.feature_top_block').fadeOut("fast");
    $('.feature_top_block#1').fadeIn("fast");
    
    $('.feature_top_left_bottom_box').click(function () {
        var target = $(this).attr("id");
        if ($('.feature_top_block').is(':visible')) {
            $('.feature_top_block').fadeOut("fast");
            $(".feature_top_block[id*='" + target + "']").fadeIn("slow");
        }
    });
  
  
 
  

  
/********************************************
  CONTROLS THE TOP NAV ANIMATIONS 
********************************************/
  
    $('.nav_tab.short').hover(function () {
        $(this).animate({
            height: "+=5px",
            marginTop: "-=5px"
        }, 50);
        $(this).css({
            backgroundColor: "#fffef1"
        });
    }, function () {
        $(this).animate({
            height: "-=5px",
            marginTop: "+=5px"
        }, 50);
        $(this).css({
            backgroundColor: "#fbf8cf"
        });
    });
  
/********************************************
  CONTROLS THE VIDEO LAUNCHER
********************************************/  
  
  $('#playvideo').click(function() {
    launch.fullscreen('.video');
  });

  
  
  
  
  
  
 /* ******* END DOCUMENT READY **************** */
});

