$(document).ready(function() {
	$('.topLevelNav, .dropdown').hover(function(){
		if ($(this).attr('id') == 'topLevelNav1' || $(this).attr('id') == 'dropdown1') { $('#dropdown1').show(); }
		if ($(this).attr('id') == 'topLevelNav2' || $(this).attr('id') == 'dropdown2') { $('#dropdown2').show(); }
		if ($(this).attr('id') == 'topLevelNav3' || $(this).attr('id') == 'dropdown3') { $('#dropdown3').show(); }
		if ($(this).attr('id') == 'topLevelNav4' || $(this).attr('id') == 'dropdown4') { $('#dropdown4').show(); }
	}, function() {
		$('.dropdown').hide();
	});
	
	$('#pageRightCol.mapContainer a.lb-trigger').click(function(){
		$('#lightsOut-lbContainer').show();
	});
	$('#lightsOut-lbContainer .closebtn').click(function(){
		$('#lightsOut-lbContainer').hide();
	});
});
