// JavaScript Document

$(function(){
	$("span.hover").hover(function(){
		$(this).addClass("on");
		$("#"+$(this).attr("id")+"_sub").show();
		//$("div.navcontainer").addClass("bluepix");
		$(".overlay",this).addClass("on");
	},function(){
		$(".subnav").hide();
		$(this).removeClass("on");	
		//$("div.navcontainer").removeClass("bluepix");
		$(".overlay").removeClass("on");
	});
});
