
$(document).ready(function() {

	/* rounded corners on nav */
	
	$('#nav li span').each( function(index){
		$(this).corner("7px top");
	});
	$('#nav li a').each( function(index){
		$(this).corner("7px top");
	});
	
	/* Round corners in IE kills bottom border from CSS, so enforce it here */
	$('#nav li a, #nav li span').css( "border-bottom", "1px solid #fff" );
	$('#nav li a.selected, #nav li span.selected').css( "border-bottom", "1px solid #952646" );
	

	/* enhancement for subnav */
	
	$('#nav li ul').css({
		display: "none"
	});
	
	$('#nav li').hover(function() {
		$(this)
		.find('ul')
		.stop(true, true)
		.slideDown('fast');
	}, function() {
		$(this)
		.find('ul')
		.stop(true,true)
		.fadeOut('fast');
    });

});

