$(document).ready(function() {
  if ($('#photogallery').length != 0) {
    $('#photogallery li a').lightBox();
  }
});

$('#carousel .image').cycle({ 
                      fx:     'scrollVert', 
                      timeout: 5000,
                      speed: 500,
                      before:  onBefore,
                      after:   onAfter,
                      pager:'#pager'
                   });
 
function onBefore() { 
    //$('.info').fadeOut(200);
}

function onAfter() { 
    //$('.'+this.id).fadeIn(200);
}

$(document).ready(function() {
    $('.hoverable').hover(function() {
      $(this).addClass('hover');
    }, function() {
      $(this).removeClass('hover');
    });
    $('.productthumbs li').hover(function() {
    	$(this).find('.overlay').css('display', 'block');
    }, function() {
        $(this).find('.overlay').css('display', 'none');
    });
    
    if ($('.column-b .cases')) {

    	$('.column-b .cases .carousel').cycle({ 
    	                      fx:     'fade', 
    	                      timeout: 5000,
    	                      speed: 500
    	                   });
    	 	
    }
    
    $(".product #photo a").fancybox({
        overlayColor: false,
        padding: 1
    });
    
});

$(document).ready(function() {
    $('.column-ab table td:last-child').addClass('last-child');
    $('.column-ab table tr:last-child').addClass('last-child');
});
