$(function(){
	// Nav Rollover
	$('#nav > li').hover(function(){
		// Swap image
		$('img', this)[0].src = $('img', this)[0].src.replace(/(\.[^.]+)$/, '_over$1');
		
		// Show Subnav
		$('ul', this).show();
	}, function(){
		// Unswap image
		$('img', this)[0].src = $('img', this)[0].src.replace(/_over(\.[^.]+)$/, '$1');
		
		// Hide Subnav
		$('ul', this).hide();
	});
	
	// Disable tab clicks
	$('#nav a.noclick').click(function(){ return false; });
	
	// Remove bottom border on last item
	$('#nav ul li:last-child a').css('border-width', '0');
	
	// Browser Fixes
	if ($.browser.msie) {
		// IE 6 fix
		if (/MSIE\s(5\.5|6\.)/.test(navigator.userAgent)) {
			$('#nav ul a').css({display: 'inline-block', width: '100%'});
		}
	}
});