jQuery(function($) {
	$('#header ul li').hover(
		function () {
			$(this).stop().fadeTo("slow", 0.55);
		},
		function () {
			$(this).stop().fadeTo("slow", 1);
		});
	
});

jQuery(function($) {
	$('.widget_content ul li a').hover(
		function () {
			$(this).stop().animate( { marginLeft: "15px" }, 200);
		},
		function () {
			$(this).stop().animate( { marginLeft: "0px" }, 200);
		});
});