// lets use jQuery to traverse and manipulate DOM elements after page load

$(document).ready(function(){
	
	//$("#quickLinks li:first").addClass("firstChild");
	//$("#quickLinks").children(":last").addClass("lastChild");
   
	// Patch some CSS holes in IE 6 for #navMain li children
	// as li:hover psuedo class is not supported in IE6.
	// Make sure there is a matching class called 'over' for these li elements.
	$("#navMain li").hover(function() {
		$(this).addClass("over");
	},function(){
		$(this).removeClass("over");
	}); // end .hover function
	
});// end document.ready function