
var $j = jQuery.noConflict();

$j(document).ready(function(){
   $j(".menuLink").hover(function(){
     $j(this).animate({color: 'rgb(5,171,180)'},250).animate({borderBottomColor: 'rgb(249,254,255)'},250).animate({borderTopColor: 'rgb(249,254,255)'},250);
   },function(){
     $j(this).animate({color: 'rgb(2, 2, 2)'},50).animate({borderBottomColor: 'rgb(218,225,241)'},50).animate({borderTopColor: 'rgb(218,225,241)'},50);
   });
   $j(".footLink").hover(function(){
     $j(this).animate({color: 'rgb(5,171,180)'},250).animate({borderBottomColor: 'rgb(249,254,255)'},250).animate({borderTopColor: 'rgb(249,254,255)'},250);
   },function(){
     $j(this).animate({color: 'rgb(2, 2, 2)'},50).animate({borderBottomColor: 'rgb(218,225,241)'},50).animate({borderTopColor: 'rgb(218,225,241)'},50);
   });

 });
