$(document).ready(function() {
	$('#nav li li:last a').addClass('noBorder');
	
	$('#nav li').hover(function() {
			$(this).addClass('over');
		},
		function() {
			$(this).removeClass('over');
		}	
	);
	
	//$.preloadCssImages(); commented by dipali for showing unwanted images.
});
