$('document').ready(function() {
	$('.welcome-click').click(function(e) {
		window.location = $('#welcome a').attr('href');
	});

	$('.new-window').click(function(e) {
		e.preventDefault();
		window.open(this.href);
	});
});
