/* 
Nav Hack for z-index Rollover 
06/14/09 : Edward Gregory

IE has z-index bug. (Big surprise!) 
*/	

$(document).ready(function() {
		// Duplicate Nav content into #nav_spots //
        var ns = $("#nav_shell").html();
		$("#nav_spots").html(ns);
});
 
$(function(){
 $("li[class^='nav_'] a")
 
  .mouseover(function() {
				var p = $(this).parent().attr("class");
				$("#nav_shell ."+p).addClass("navSelect");

  })
 
  .mouseout(function() {
				var p = $(this).parent().attr("class");
				$("#nav_shell ."+p).removeClass("navSelect");
  });
  
});


