$(document).ready( function() {
	
	 $("#menu > ul > li > a").bind({
	  mouseover:function() {
	         $(this.parentNode).children("ul:hidden, li:hidden").show();
	      	 $('#menu .active ul').hide();
	    }});
	  $("#menu > ul > li").bind( {mouseleave:function() {
	   	$('#menu .active ul').show();
	    if ( ! $(this).hasClass( 'active')) {
	          $(this).removeClass( 'current');
	          $('ul', this).hide();
	    }
	        }
	 });
}); 

$(function(){
	$('a.newWindow').click(function(){
	window.open(this.href);
	return false;
	});
});

