$(document).ready(function(){

	// Temporary way to ensure certain URLS open in a new window
	// ---------------------------------------------
	$('#calculatorList h2 a').bind('click', function(){

		window.open($(this).attr('href'), 'popup', 'width=990,height=700,address=0,toolbar=0,status=0,scrollbars=1');
		return false;

	});

});
