$(document).ready(function() {

	$('a.new').mouseover(function() {
		$('#imnew').show();
		$('#nextsteps, #watch, #give').hide();
		return false;
		});
	$('#imnew').mouseleave(function() {
		$('#imnew').hide();
		});
	$('#imnew').mouseenter(function() {
		$('#imnew').show();
		});
	$('#logo').mouseleave(function() {
		$('#imnew').hide();
		});
	$('#header').mouseleave(function() {
		$('#imnew').hide();
		});



	$('a.nextsteps').mouseover(function() {
		$('#nextsteps').show();
		$('#imnew, #watch, #give').hide();
		return false;
		});
	$('#nextsteps').mouseleave(function() {
		$('#nextsteps').hide();
		});
	$('#nextsteps').mouseenter(function() {
		$('#nextsteps').show();
		});
	$('#logo').mouseleave(function() {
		$('#nextsteps').hide();
		});
	$('#header').mouseleave(function() {
		$('#nextsteps').hide();
		});



	$('a.watch').mouseover(function(){
		$('#watch').show();
		$('#imnew, #nextsteps, #give').hide();
		return false;
		});

	$('#watch').mouseleave(function() {
		$('#watch').hide();
		});

	$('#watch').mouseenter(function() {
		$('#watch').show();
		});

	$('#logo').mouseleave(function() {
		$('#watch').hide();
		});
	$('#header').mouseleave(function() {
		$('#watch').hide();
		});
		
});
