// ActionScript Document
   $(document).ready(function() {
        //var cont_left = $("#two").position().left;
        $(".image img").mouseenter(function() {
            // hover in
            //$(this).parent().parent().css("z-index", 1);
			$(this).css("z-index", 1001);
            $(this).animate({ height: "370", width: "500", top: "-240" }, "slow");
			//$("#rotator1").css("display","none");
        });
$(".image img").mouseout(function() {
			 // hover out
			//$(this).parent().parent().css("z-index", 0);
			//$(this).css("z-index", 0);
            $(this).animate({ height: "130", width: "200", top: "0" }, "slow"); 
			//$("#rotator1").css("display","block");
        });    
      }); 

