$(document).ready(function(){
	$("#left_nav form:first").submit(function(event){
		event.preventDefault();
		var user_email = $("#left_nav form:first input").attr("value");
		$("#left_nav #subscribe_result").load("/wp-content/themes/michaelmichael/subscribe.php", {email:user_email});
	});
	$("#left_nav a[href='http://www.comedycentral.com/shows/michael_and_michael/index.jhtml']").mouseover(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace(".gif","_active.gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://www.comedycentral.com/shows/michael_and_michael/index.jhtml']").mouseout(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace("_active.gif",".gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://www.comedycentral.com/sitewide/game_player/index.jhtml?game=238707']").mouseover(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace(".gif","_active.gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://www.comedycentral.com/sitewide/game_player/index.jhtml?game=238707']").mouseout(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace("_active.gif",".gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://comedians.comedycentral.com/michael-ian-black/']").mouseover(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace(".gif","_active.gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://comedians.comedycentral.com/michael-ian-black/']").mouseout(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace("_active.gif",".gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://comedians.comedycentral.com/michael-showalter/']").mouseover(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace(".gif","_active.gif");
		$(this).children("img").attr("src",img);
	});
	$("#left_nav a[href='http://comedians.comedycentral.com/michael-showalter/']").mouseout(function(){
		var img = $(this).children("img").attr("src");
		img = img.replace("_active.gif",".gif");
		$(this).children("img").attr("src",img);
	});
	if (location.href == 'http://' + document.domain + '/press/') {
		$("#left_nav a[href='http://" + document.domain + "']").mouseover(function(){
			var img = $(this).children("img").attr("src");
			img = img.replace(".gif","_active.gif");
			$(this).children("img").attr("src",img);
		});
		$("#left_nav a[href='http://" + document.domain + "']").mouseout(function(){
			var img = $(this).children("img").attr("src");
			img = img.replace("_active.gif",".gif");
			$(this).children("img").attr("src",img);
		});
	}
	else {
		$("#left_nav a[href='http://" + document.domain + "/press/']").mouseover(function(){
			var img = $(this).children("img").attr("src");
			img = img.replace(".gif","_active.gif");
			$(this).children("img").attr("src",img);
		});
		$("#left_nav a[href='http://" + document.domain + "/press/']").mouseout(function(){
			var img = $(this).children("img").attr("src");
			img = img.replace("_active.gif",".gif");
			$(this).children("img").attr("src",img);
		});
	}
});