$(document).ready(function(){

	$("a.inline").fancybox({ 'hideOnContentClick': false,
						   	 'overlayOpacity': .95,
							 'frameHeight': 825,
							 'frameWidth': 350,
							 'padding': 10,
							 'centerOnScroll': false
							 }); 

	$("a.inline").hover(function(){
      $(this).animate({ marginLeft: "3px" }, 100 ); 
		  }, function(){
			  $(this).animate({ marginLeft: "0px" }, 100 ); 
		  });	

 $("table tr:nth-child(even)").addClass("striped"); 
 
});