jQuery(function($){
		/* Top nav Rounded */

	
		

		$(".footer_left ul li").corner("4px #1F160E");
		$(".rsidebar ul li ul li").corner("4px #f2f0eb");
		$(".lsidebar ul li ul li").corner("4px #e7e3d8");
		$("#content .entry ul li").corner("4px #ffffff");

		/* Notice Bars */
		$("#noticebar-yellow").corner("4px #fff");
		$("#noticebar-blue").corner("4px #fff");
		$("#noticebar-red").corner("4px #fff");
		
		
		/* Index page */
		$("#misc").each(function(){
			$(this)
				.bind("focus", function(event){
					$(event.target).css('background', "#2f2925");
$(event.target).css('font-weight', "bold");
$(event.target).css('color', "#deddd6");

				})
				.bind("blur", function(event){
					$(event.target).css('background', "#dfded7");
$(event.target).css('font-weight', "normal");
$(event.target).css('color', "#6a6c5a");
				});
		});
	});
		