

<!--
$(document).ready(function() { 
 banner = $('#home .teasers3Column li a');
 if($.browser.msie){
  banner.hover(
   function () {$(this).animate({left:'10px'},200);}, 
   function () {$(this).animate({left:'0'},200);}
  );
 }
 else{
  banner.hover(
   function () {$(this).animate({left:'10px',opacity: 0.8},200);}, 
   function () {$(this).animate({left:'0',opacity: 1},200);}
  );
 }
});
//-->
