// jquery config
$(document).ready(function() {
	$('a[@href^="#"]').click(function(){
		$($(this).attr("href")).ScrollTo(700, 'easeout');
		return false;
	});
});
$(document).ready(function() {
	$("table.defTable tr:even").addClass("even");
});

$(document).ready(function() {
	$("table.defTable tr").hover(function() {
		$(this).addClass("hover");
		},
		function() {
		$(this).removeClass("hover");
	});
});

