Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 20th, 2012  |  syntax: JavaScript  |  size: 0.38 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. {literal}
  2.         <script type="text/javascript">
  3.                 $(document).ready(function(){
  4.                         $('.center_block').mouseover(function(){
  5.                                 $(.phover).stop(true).animate({
  6.                                         display:'block'
  7.                                 },{duration:305}
  8.                                 )
  9.                         });
  10.                         $(".center_block").mouseout(function() {
  11.                                 $(.phover).stop(true).animate({
  12.                                         display:'none'
  13.                                 },{duration:305}
  14.                                 )
  15.                         })
  16.                 });
  17.         </script>
  18. {/literal}