// On Load
$(document).ready(function(){
						
	/* Rollovers */
	$("img").hover(
		function(){ this.src = this.src.replace("-out","-over"); },
		function(){ this.src = this.src.replace("-over","-out"); }
	);
	
	$('#tabNav').live('click', function() {
		//alert( "CLICK" );
		//$("#contentWrap div.tab").removeClass( "activetabwindow" );
		//$("#contentWrap #" + $(this).attr( "rel" ) ).addClass( "activetabwindow" );
	});
});

// Event Handlers
$(function(){
		   

	/* QUICK WEATHER BOX */
	/*********************/
	$('.qw').click(function(){ 
		$('#quickWeather').fadeIn('normal'); 
		$('#qwc').fadeIn('normal');					
	});
	$('#qwc').click(function(){ 
		$('#quickWeather').fadeOut('normal');  
		$('#qwc').fadeOut('normal');													   
	});
						
	
});
