// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function() {
          jQuery("#tristan").mouseover(function() {
              jQuery("#tristan").stop().animate({height:"113px"},800);
              jQuery("#textTristan").stop().animate({marginTop:"-113px"},800);
           });
          jQuery("#tristan").mouseout(function() {
              jQuery("#tristan").stop().animate({height:"80px"},800);
              jQuery("#textTristan").stop().animate({marginTop:"0px"},800);
           });
});
