﻿$(function(){
  $(".rollover").hover(function(){
    $(this).fadeTo(1, 0.5);
  },function(){
    $(this).fadeTo(1, 1.0);
  });
});

$(function(){
  $("tr:nth-child(odd)").addClass("odd");
});

$(document).ready(function() {
  $(".imagebox p.image a").fancybox({
    'titlePosition': 'inside'
  });
});

