$(document).ready(function(){
	$("#top_nav a img").hover(
		function()
		{
			$(this).css("margin-top","-42px");
		},
		function()
		{
			$(this).css("margin-top","0px");
		}
	);
	$("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());
		}
	});

	$(".signup form").submit(function(event){
		event.preventDefault();
		var user_email = $(".signup form input").attr("value");
		$(".signup h4").load("/tosh.0/wp-content/themes/tosh/subscribe.php", {email:user_email});
	});
});