// JavaScript Document

	$(function() {
			animateCloud();
		
		function animateCloud() {
			$("#cloud").animate({ 'left': '700px' }, 58000, 'linear', function() {
				$(this).animate({ 'top': '-66px', 'left':'900px' }, 8000, 'linear', function() {
																			
				$(this).css('left', '-91px');
				$(this).css('top', '0px');
				animateCloud();
				
																			});
			});
		}
	   
		$("#menu-left ul li").css( {backgroundPosition: "-10px 2px"} ).mouseover(
			function() {
				$(this).stop().animate({backgroundPosition: '0px 2px'}, 500)
			
		}).mouseout(
		function() {
				$(this).stop().animate({backgroundPosition: '-10px 2px'}, 500)
		});

	});