/**
  * site.js
  * 
  **/
  
$(document).ready(function () {
	// Top Navigation Behavior
	$('A.topNav').hover(
		function () {
			$(this).parent().addClass('navHover');
		},
		function () {
			$(this).parent().removeClass('navHover');
		}
	);
});

