//////////////////////////////////////////////////////
//
//	The purpose of this file is to
//	apply a hover class on mouseover
//	on the <li> elements in the nav.
//	This is because IE doesn't put
//	the pseudo class :hover on <li> elements
//
//	This is code that uses the
//	jquery javascript library (http://jquery.com/)
//
//////////////////////////////////////////////////////
$(document).ready(function() {
	$('form.validateForm').validate();
	$('#topLinks').each(function(){
		$(this).find('a').each(function(){
			if(this.href == window.location) {
				$(this).parent().addClass('selected');
			}
		});
	});
});

