// JavaScript Document

$(document).ready(function(){
    
 
	
	$(".buttons").hover(
      function () {
        $(this).animate( { height:"76px" }, { queue:false, duration:300 } )
      }, 
      function () {
         $(this).animate( { height:"38px" }, { queue:false, duration:600 } )
      }
    );
	

    
$(".toptab").hover(
      function () {
        $(this).animate( { height:"31px" }, { queue:false, duration:300 } )
		  $(this).find('ul').fadeIn("fast");

      }, 
      function () {
         $(this).animate( { height:"21px" }, { queue:false, duration:600 } )
		  $(this).find('ul').fadeOut("fast");
      }
    );
	
	$(".toptabred").hover(
      function () {
        $(this).animate( { height:"31px" }, { queue:false, duration:300 } )
		  $(this).find('ul').fadeIn("slow");

      }, 
      function () {
         $(this).animate( { height:"21px" }, { queue:false, duration:600 } )
		  $(this).find('ul').fadeOut("fast");
      }
    );

	

  });







$(window).load(function () {
  	
        $(".buttons_large").animate( { height:"447px" }, { queue:false, duration:600 } )
    
	

});

