/* A simple script using jQuery to animate a sunrise */

function sunRise() {
	$('#sun').animate({ 
		top: "-110px"
	}, 3500);
}

$(window).load( 
	function() { 
		sunRise(); 
	}
);

