// JavaScript Document

$(document).ready(function() {
	$('.subNav').hide();
	$('#menu li').hover(
		function(){ $('.subNav', this).show(10)},
		function(){ $('.subNav', this).hide(10)});
	$(".popUp").click(function(){
		window.open(this.href, '_blank', 'width=430, height=165, resizable=yes, scrollbars=no, top=10, left=10 toolbar=0');
		return false;
	});
});

