$(document).ready(function(){
	$('#nav li').hover(
		function(){
			$(this).children('ul').fadeIn(100);
		}, function(){
			$(this).children('ul').fadeOut(100);
		}
	);
	
	$('.storelisting ul li span').click(function(){
		if($(this).parent().children('.largeMap').is(":visible")){
			$(this).parent().children('.largeMap').slideUp(200);
		} else {
			$('.largeMap').slideUp(200);
			$(this).parent().children('.largeMap').slideDown(200);
		}
	});
	
	$('a.popupWindow').click(function() {
		window_options = "menubar=1,resizable=1,scrollbars=1,status=1";
		
		window_options += $(this).attr('data-popup-width') ? ",width=" + $(this).attr('data-popup-width') : "";
		window_options += $(this).attr('data-popup-height') ? ",height=" + $(this).attr('data-popup-height') : "";
				
		mywindow = window.open ($(this).attr('href'),$(this).attr('data-popup-name') ? $(this).attr('data-popup-name') : "popup",window_options);
		mywindow.focus();
		
		return false;
	});
});
