$('#readyTest').corner();

$(function(){

$('div.demo').each(function() {

var t = $('p', this).text();

eval(t);

});

});






      $(function() {
      $(".slideBox").hover(function(){
      $(this).find("img").stop().animate({
      top:-325
      }, 500);
      }, function(){
      $(this).find("img").stop().animate({
      top:0
      }, 500);
      });
      });

