/**
 * Causes drop downs to show and hide when scrolled over
 */
$(document).ready(function() {
	$( "li.dropdown" ).hover( function() { $( "ul", this ).css( "display", "block" ); },
									  function() { $( "ul", this ).css( "display", "none" ); } )
} );

