jQuery(document).ready(function($) {
	$("#container #main-content .in-sidebar .sidebar li.widget ul li a").hover(function () {
		$(this).animate({ 
        marginLeft: "10px"
      }, 500 );
	}, function () {
		$(this).animate({ 
        marginLeft: "0px"
      }, 500 );
	});
});