			jQuery(function($){
				$(document).ready(function() {
				$('#twittericon li a').hover(function() { 
				$(this).stop().animate({ marginLeft: '30px' },300); // on Mouseover move to left
				}, function() { //on Mouseout move back to original positon
				$(this).stop().animate({ marginLeft: '0px' }, 300);
			});
			
			});

			$(document).ready(function() {
				$('#facebookicon li a').hover(function() { 
				$(this).stop().animate({ marginLeft: '30px' },300); // on Mouseover move to left
				}, function() { //on Mouseout move back to original positon
				$(this).stop().animate({ marginLeft: '0px' }, 300);
			});
			
			});

			$(document).ready(function() {
				$('#rssicon li a').hover(function() { 
				$(this).stop().animate({ marginLeft: '30px' },300); // on Mouseover move to left
				}, function() { //on Mouseout move back to original positon
				$(this).stop().animate({ marginLeft: '0px' }, 300);
			});
			
			});

			$(document).ready(function() {
				$('#emailicon li a').hover(function() { 
				$(this).stop().animate({ marginLeft: '30px' },300); // on Mouseover move to left
				}, function() { //on Mouseout move back to original positon
				$(this).stop().animate({ marginLeft: '0px' }, 300);
			});
			});	
			});
