$(document).ready(function() {

	/**
	 * Redirect base on drop down value
	**/
	$("#redirect").change(function()
	{
		var page = $("#redirect").val();
		window.location.replace(page + '.html');
	});
	
	/**
	 * Show/hide the loan calculators 
	 *
	 * @depreaceated - this was replaced with pop-overs
	**/
	/*
	$(".calculator").toggle(
		function()
		{
			var id = this.id;		
			$('#' + this.id + '-calculator').slideToggle();
			$(this).html('Close Calculator');
			return false;
		},
		function()
		{
			var id = this.id;		
			$('#' + this.id + '-calculator').slideToggle();
			$(this).html('Open Calculator');
			return false;
		}
	);
	*/
	
});

/**
 * This gets called from flash and changes the link overlaying the flash movie
**/
function swapOverlayedLink(page)
{ 
	$('#overlayed-link').attr('href', page);
} 

