jQuery(function($){
		/* Top nav Rounded */
		$("#global_nav ul.nav a").corner("4px #2e1809");
		$(".search").corner("4px #a3c32f");
		$("#info .input").corner("4px #a3c32f");
		$(".inputbg").corner("4px #ffffff");
		$("#top_article .featuredright ul li").corner("4px #1f160e");
		$(".footer_left ul li").corner("4px #2b2a28");
		$(".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");
		

/* wp nav menu */
	$("#global_nav ul.menu ul").css({ display: 'none' });
	$("#global_nav ul.menu li").hover(function() {
		$(this).find('ul.sub-menu')
			.stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
	}, function(){
		$(this).find('ul.sub-menu')
			.stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );
	});

		/* 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', "#2e1809");
					$(event.target).css('color', "#deddd6");
				})
				.bind("blur", function(event){
					$(event.target).css('background', "#fff");
					$(event.target).css('color', "#3e5a32");
				});
			});
		
		/* Index page */
		$("#search_form .input, #info .input").each(function(){
			$(this)
				.bind("focus", function(event){
					$(event.target).css('background', "#2e1809");
$(event.target).css('font-weight', "bold");
$(event.target).css('color', "#deddd6");

				})
				.bind("blur", function(event){
					$(event.target).css('background', "#fff");
$(event.target).css('font-weight', "normal");
$(event.target).css('color', "#3e5a32");
				});
		});
	});
		



