/* Dependencies: jquery.js. */

/* Hover scaling */
$(document).ready(function(){
	$('#navLinks li a').hover(
		function() {
			$(this).find('img').stop().animate({
				width: '98%',
				height: '98%',
			}, 200);
		},
		function() {
			$(this).find('img').stop().animate({
				width: '92%',
				height: '92%',
			}, 200);
		}
	);

/*	
	$('body').append('<div class="cloud" id="cloud1" />');
	$(this).find('.cloud').stop().delay(800).animate({
		right: '+3000px',
	}, 60000);
*/
});


