﻿$(document).ready(function(){
	$("#pilka").animate( { top: "249px" }, 2000, "linear" )
		.animate( { top:"260px", left: "663px" }, 900, "linear" )
		.animate( { top:($(document).height()-61)+"px" }, 9000, "linear", function() {
				$(this).fadeOut('fast');
			});

	$('.submenu li a').not(".active").hover(function() {
		$(this).animate( { width: "231px" }, 300 )
	}, function() {
		$(this).animate( { width: "40px" }, 80 )
	});

});
