jQuery(document).ready(function(){
	jQuery('.coda-nav-left,.coda-nav-right').hide();
	jQuery('#teaser').mouseover(function() {
		jQuery('.coda-nav-left,.coda-nav-right').show();
	}).mouseout(function(){
		jQuery('.coda-nav-left,.coda-nav-right').hide();
		return false;
	});	
});

