$(document).ready(function(){

	//Open all links with rel="external" in new window
	$('a[rel="external"]').click( function() {
			window.open( $(this).attr('href') );
			return false;
    });
	
	var dropdown = $("ul .dropdown"), menu = $("#doors");
	$(dropdown).hide();
	$(menu).hover(function() {
		$(dropdown).show();
	}, function() {
		$(dropdown).hide();
	});
	
});
