jQuery(document).ready(function() {
	jQuery('#menu-item-243').mouseover(function() {
		jQuery('#iAmNew').slideDown('slow');
		jQuery('#nextSteps, #watch').slideUp();
		return false;
		});
	jQuery('#iAmNew').mouseleave(function() {
		jQuery('#iAmNew').slideUp();
		});
	jQuery('#menu-item-242').mouseover(function() {
		jQuery('#nextSteps').slideDown('slow');
		jQuery('#iAmNew, #watch').slideUp();
		return false;
		});
	jQuery('#nextSteps').mouseleave(function() {
		jQuery('#nextSteps').slideUp();
		});
	jQuery('a.watch').mouseover(function(){
		jQuery('#watch').slideDown('slow');
		jQuery('#iAmNew, #nextSteps').slideUp();
		return false;
		});
	jQuery('#watch').mouseleave(function() {
		jQuery('#watch').slideUp();
		});
	jQuery('#menu, #title').mouseover(function() {
		jQuery('#iAmNew, #nextSteps, #watch').slideUp();
		});
});

