// JavaScript Document

$(document).ready(function() {

$('.portfolio').addClass("js");

$('.portfolio.js .piece').hover(function() {
 var imageHeight = $(this).children('img').attr('height');
 $(this).stop().animate({height:imageHeight}, 1000);
 },
 function() {
 $(this).stop().animate({height:"230px"}, 1000);
 });
});

