jQuery(document).ready(function() {

	// LINKS HOVER sidebar blocos internas
	jQuery('.sidebar-list span').hover(
		function() {
			jQuery(this).stop().animate(
				{ marginLeft: '-4px'}, 100
			);
		},
		function() {
			jQuery(this).stop().animate(
				{ marginLeft: '0'}, 100
			);
		}
	);

});
