// JavaScript Document

$(document).ready(function(){
	
	// main nav rollover drop downs
	$('#mainNav li').hover(function(){
		$(this).addClass('hover');
		$('div', this).show();
	},
	function(){
		$(this).removeClass('hover');
		$('div', this).hide();
	});
	
	// h2.memberServices drop down
	$('h2.memberServices').hover(function(){
		$(this).addClass('hover');
		$('div', this).show();
	},
	function(){
		$(this).removeClass('hover');
		$('div', this).hide();
	});
	
});