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