// JavaScript Document
jQuery(document).ready(function(){
	$("#fb, #k, #tw, #ak, #sp, #spon").hover(function() {
		$(this).animate({ marginLeft: "-1px" }, 300 );
	});
	
	
});
jQuery(document).ready(function(){
	$("#fb, #k, #tw, #ak, #sp, #spon").mouseleave(function() {
		$(this).animate({ marginLeft: "-120px" }, 300 );
	});
	
	
});

