if(navigator.userAgent.indexOf("MSIE 6") == -1) {
  /* this won't be executed on IE6 */
  $(document).ready(function() {
    $("ul.video_cell li").hover(function() {
      $(this).find('img.pictoPlay').css({display:'none'});
      $(this).css({'z-index' : '1000', cursor: 'pointer'}); /*Add a higher z-index value so this image stays on top*/
      $(this).find('a').find('img').addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
      .animate({
        marginTop: '-96px', /* The next 4 lines will vertically align this image */
        marginLeft: '-160px',
        top: '50%',
        left: '50%',
        width: '320px', /* Set new width */
        height: '192px', /* Set new height */
        padding: '20px'
      }, 300); /* this value of "200" is the speed of how fast/slow this hover animates */

      } , function() {
      $(this).css({'z-index' : '0'}); /* Set z-index back to 0 */
      $(this).find('a').find('img').removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
      .animate({
        marginTop: '4', /* Set alignment back to default */
        marginRight: '0', /* Set alignment back to default */
        marginBottom: '3', /* Set alignment back to default */
        marginLeft: '5', /* Set alignment back to default */
        top: '0',
        left: '0',
        width: '87px', /* Set width back to default */
        height: '52px', /* Set height back to default */
        padding: '0px'
      },
      0, /* When > 0 there is a bug with the pictoPlay img, they don't disappear as expected because jQuery gets mixed up between the image fading in and the image fading out*/
      function() {
        // Animation complete.
        $('img.pictoPlay').css({margin:'-30px 0px 0px 67px', display: 'block'});

      }

    );
      $(this).css({'height' : '62px'});
      //$(this).find('img').css({margin:'-28px 0px 0px 68px', display: 'block'});
    });
  });
} /*end if*/
