$(document).ready(	function () {		jQuery.noConflict();		jQuery.easing.def = "easeOutCirc";		jQuery("#sidebar>ul>li>ul>li").hover(			function(){ jQuery(this).stop().animate({marginLeft : "10px"},400); },			function(){ jQuery(this).stop().animate({marginLeft : "0px"},400); }		); 		jQuery("#sidebar h2").toggle(			function(){ jQuery(this).next().stop().hide(500); },			function(){ jQuery(this).next().stop().show(500); }		);		jQuery("#comments").toggle(			function(){ jQuery("ul.commentlist").hide(900); },			function(){ jQuery("ul.commentlist").show(900); }		);		jQuery("#content .entry img").hover(			function(){ jQuery(this).stop().animate({opacity : "1"},200); },
			function(){ jQuery(this).stop().animate({opacity : "0.9"},200); }		);	});
