 //facebook,gmail,skype buttons
 $(document).ready(function(){
  $('.social li').mouseover(function() {
    $(".chatbubble",this).stop(true,false).fadeIn().stop(true,true).animate({'bottom':'60px','opacity':'1.0'},250);
    $('.social li').mouseleave(function() {
    $(".chatbubble",this).stop(true,false).fadeOut().stop(true,true).animate({'bottom':'80px','opacity':'0.1'},0);
    });
  });
      //text link animations
    $("a").hover(
  function () {
      $(this).stop(true,false).animate({color: '#2a4a9f'},0);
  },
  function () {
      $(this).stop(true,false).animate({color: '#999999'},350);
  }
);
//topnav animations
 $("#topnav a").hover(function(){
    $(this).stop(true,false).animate({'top':'-5px'},100);
 },function(){
     $(this).stop(true,false).animate({'top':'0px'},100);
 });
}); 
