$(function(){
	
	$('a[href^="#"]').click(function(){
		$.scrollTo(this.hash);
		return false;
	});
	
	$('.blank a, a.blank').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
	
	$('table.stripe tr:odd').addClass('odd');
	$('table.stripe tr:even').addClass('even');
	
});

