// PCToday Dynamic Weather Header
$(document).ready(function(){
	$("#weatherHere").load('http://www.pct.edu/pctoday/news/weather.asp #changeHeader',function(){
		$('#temp').css({'opacity':'1'}).animate({'opacity':'0'},3500);
		$('#weatherHere, #part1').hover(
			function(){
				$('#temp').stop().animate({'opacity':'1'});},
			function(){
				$('#temp').stop().animate({'opacity':'0'});}
		);
	});
});
