$(document).ready(function(){
	$('ul#menu li:last').css("background", "none");
	$(".lightbox").lightbox({fitToScreen: true});
	
	$('table td:even').css("width", "105px");
	$('table td:even').css("min-width", "105px");
	
	$('table td:odd').css("padding", "3px 3px 3px 30px");
	$('table td:odd').css("width", "200px");
	$('table td:odd').css("min-width", "200px");
	
	$('table td:even:last').css("border-bottom", "none");
	$('table td:last').css("border-bottom", "none");
	
});