jQuery(function($){
		/* Top nav Rounded */
		$("#global_nav a").corner("4px #f7f5f3");
		$(".search").corner("4px #ffffff");
		$(".inputbg").corner("4px #ffffff");
		$("#top_article .featuredright ul li").corner("4px #1f160e");
		$(".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");
		
		/* Input Fields */
		$(".title_input, .input3, .input, .host_input, .host_input3, .host_input2, textarea, .input6, .input4, select").each(function(){
			$(this)
				.bind("focus", function(event){
					$(event.target).css('background', "#FAF9E5");
				})
				.bind("blur", function(event){
					$(event.target).css('background', "#F6F6F6");
				});
			});
		
		/* Index page */
		$("#search_form .input, #misc .input").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");
				});
		});
	});
		