// JavaScript Document

function InitNav() {
	/*
	//mouse over
	$('.divNav').mouseover(function() {
		var intid = GetID($(this),6);
		//animate nav item
		$('#divNav'+intid).animate({top:20}, 150);
		$('#aNav'+intid).animate({top:0}, 150);
	});
	//mouse out
	$('.liNav').mouseout(function() {
		var intid = GetID($(this),5);
		//animate nav item
		$('#divNav'+intid).animate({top:0}, 150);
		$('#aNav'+intid).animate({top:-20}, 150);
	});
	*/
	$('#divNav a').hover(
		function () {
			$(this).animate({top:0}, 150);
		},
		function () {
			$(this).animate({top:-19}, 150);
		}
	);
}


