
$(window).load(function(){
	$(".bear1 a").click(function(){
		$(".eggBox").animate({"top": "100px"}, 1000);
		$(".eggBox img").animate({"width": "98px", "height": "131px", "left": 0}, 1000, function(){
			//alert(1);
			$(this).css("opacity", 0);
			$(".eggT").css("left", "4px");
			$(".eggB").css("left", "0");
			$(this).parent().animate({"top":"+=600px","left": "+=100px"}, 1500);
			$(".eggT").animate({"top":"100px","left": "20px"}, 400);
		});
		return false;
	});
});
