$(document).ready(function() {

	// Reveal drop-down menu on hover.
	$("ul#mainlinks li").hover(
		function() {
			$(this).addClass("revealed");
		}, 
		function() {
			$(this).removeClass("revealed");
		}
	);

});
