jQuery(document).ready(function(){

jQuery('#primary a, #secondary a').hover(function(){
	jQuery(this).stop().animate({marginLeft: '-5px'}, 200);
}, function(){
	jQuery(this).stop().animate({marginLeft: '0px'}, 200);
	
});

jQuery('a.social').hover(function(){
	jQuery(this).stop().animate({marginTop: '-10px'}, 200);
}, function(){
	jQuery(this).stop().animate({marginTop: '0px'}, 200);
	
});

});