// JavaScript Document
jQuery(document).ready(function($){
$('.menu').hide();
$('.gbtns').mouseover(function(){
$(this).animate({color:'#EEE'}, 265);
}).mouseout(function(){
$(this).delay(80).animate({color:'#900'}, 265);
});
});

$(document).ready(function(){ 
    $("ul.sf-menu").superfish({
			animation:{height:'show'},
            speed:'fast',                         
            autoArrows:false,                           
            dropShadows:false                             
        }); 
}); 

