$(function() {

    $("a.item_image").fancybox({
    		'transitionIn'	:	'elastic',
    		'transitionOut'	:	'elastic',
    		'speedIn'		:	600,
    		'speedOut'		:	200,
    		'overlayShow'	:	false
    });

	$('.hl_table tr:not(:first)').hover(
	  function () {
	    $(this).css({backgroundColor: '#4B4B4B'});
	  },
	  function () {
	    $(this).css({backgroundColor: ''});
	  }
	);
});

