$(document).ready(function() {
	$("ul#nav li a").addClass("js");
	$("ul#nav li a").hover(
      function () {
        $(this).stop(true,true).animate({backgroundPosition:"(0 20)"}, 200);
        $(this).animate({backgroundPosition:"(0 30px)"}, 150);
      },
      function () {
        $(this).animate({backgroundPosition:"(0 149px)"}, 200);

      }
    );


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

      }
    );
	
	
});
