$(document).ready(function() {
	$(".bg").css({ opacity: 0.25 });
	$(".bg").corner("right 30px sc:#110");
	
	$('#social_nav_horizontal li a').hover(
		function() {$(this).stop().animate({ marginTop: '-2px' },0); },
		function() {$(this).stop().animate({ marginTop: '0px' }, 100); }
	);
 });
 
