// JavaScript Document
$(function(){
$('.zoomim').hover(function(){
							// var maxheight = $(this).children('div')
$(this).children('div').stop().animate({height:"600px"}, 400);
}, function(){ $(this).children('div').stop().animate({height:"100px"}, 400); });

$('.zoomim2').hover(function(){
							// var maxheight = $(this).children('div')
$(this).children('div').stop().animate({height:"600px"}, 400);
}, function(){ $(this).children('div').stop().animate({height:"100px"}, 400); });

});
