$(document).ready(function(){

	// Showcase Toggler button
	$("a.div_toggle").click(function(){
		$(this).parent().next().next("div.expanded").slideToggle(); return false;
	});

	var profiles =
	{
		simpleloancalculator:
		{
			width: 580,
			height: 380,
			center: 1,
			status:1
		},
		
		enhancedloan:
		{
			width: 580,
			height: 410,
			center: 1,
			status: 1
		},
		
		equityline:
		{
			width: 580,
			height: 423,
			center: 1,
			status: 1
		},
		
		compareloan:
		{
			width: 580,
			height: 450,
			center: 1,
			status: 1
		}
	};

   	$(function()
	{$("a.popup").popupwindow(profiles);});

});