// JavaScript Document
$(function(){
	$('.nav li a').css({backgroundPosition: "(0px 0px)"})
	$('.nav li a').hover(function(){
		if(!($(this).is(':animated'))){
			$(this).stop().animate({backgroundPosition:"(0px -210px)"}, {duration:500});
		}
	}, function(){
		$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:300});
	});
	$('.nav li').hover(function(){
		$(this).children('ul').fadeIn(500);
	}, function(){
		$(this).children('ul').fadeOut();	
	});

	$('.nav li.weather a').click(function(e){
		e.preventDefault();
		if($('#modal').is(':visible')){
			$('#modal').fadeOut();
			$('li.weather a').html('WEATHER');
		} else {
			$('#modal').fadeIn();
			$('li.weather a').html('CLOSE');
		}
	});
});
