$(document).ready(function()
	{
		if ($("#s").val() == "" || $("#s").val() == "Search") {
			$("#s").css("color", "#dddddd");
			$("#s").val("Search");
		}
		
		/*$("#top_nav a").hover(
			function()
			{
				//$(this).parent().css("background-color", "#caeb81");
				//$(this).css("color", "#7c6147");
				//$(this).css("text-decoration", "underline");
				//$(this).css("color", "#319ae7");
			},
			function()
			{
				//$(this).parent().css("background-color", "#7c6147");
				//$(this).css("text-decoration", "none");
				//$(this).css("color", "white");
			}
		);*/

		$("form input[type='image']").hover(
			function()
			{
				$(this).attr("src", $(this).attr("src").replace("OFF","ON"));
			},
			function()
			{
				$(this).attr("src", $(this).attr("src").replace("ON","OFF"));
			}
		);

		$("#top_nav form input[type='image']").click(function(event){
			if($(this).attr("src").indexOf('web')!=-1)
			{
				event.preventDefault();
				window.open("http://search.live.com/results.aspx?q="+$(this).parent().children("input[type='text']").val()+"&mkt=en-US&FORM=VCM002");
			}
		});
		
		$("#s").click(function() {
			$(this).css("color", "black");
			$(this).val("");
		});
	}
);