var $zwp = jQuery.noConflict();

$zwp(document).ready(function() {

  //screenshot hover effect
  $zwp('.toggless img').mouseover(function(){
    $zwp(this).next('img.hover').animate({top:'2px'},300);
  });
    
  //screenshot hover effect
  $zwp('img.hover').mouseout(function(){
    $zwp(this).animate({top:'240px'},200);
  });
    
  /*/better surfing experience for tabbed menu pages
  var maxh = 0;
  $zwp('.tabcontent').each(function(){
  var h = $zwp(this).height();
  alert(h)
    if (h > maxh) {
      maxh = h;
      alert('new h')
    }
  });
  $zwp('.tabbed').height(maxh);
  alert($zwp('.tabbed').height())
  */
  
  //lightbox
  $zwp('a.lightbox').lightBox();


});


