﻿jQuery(document).ready(function() {
	var num = 0;
	jQuery("#mainNav a").each(function() {
		var thisItem = jQuery(this);
		thisItem.attr("rel", num);

		thisItem.hover(
			function() {
				Hover(thisItem);
			},
			function() {
			}
		);

		jQuery("#navWrapper").hover(
			function() {
			},
			function() {
				jQuery("div.SubnavHomeWrapper").hide();
				jQuery("div.SubnavHomeWrapper a.active").parent().parent().parent().show();
			}
		);

		num++;
	});
});

function Hover(curItem){
	jQuery(".SubnavHomeWrapper").hide();
	var loc = ".sn_" + curItem.attr("rel");
	jQuery(loc).toggle();
	
	jQuery(".SubnavHomeWrapper").animate({top:"0px"}, 300);
}