// Set your website-specific parameters here
var di = new DI( {
					fiName: "Great Southern National Bank",
					custom: { fav_food: "chocolate" }
				 } );

di.disclaimer.messages["example"] = '<h2 style="text-align:center; color: blue;">Example!</h2><p>You are leaving '+di.fiName+'\'s ddddwebsite. Links that may be accessed via this site are for the convenience of informational purposes only. Any products and services accessed through this link are not provided or guaranteed by '+di.fiName+'. The site you are about to visit may have a privacy policy that is different than '+di.fiName+'\'s. Please review their privacy policy. '+di.fiName+' does not endorse the content contained in these sites, nor the organizations publishing those sites, and hereby disclaims any responsibility for such content.</p>';

// Custom callbacks
di.showDisclaimerCallback = function(args) {
	var disclaimer = args["disclaimerDiv"];
	disclaimer.fadeIn(1000);
	return true;
}

di.hideDisclaimerCallback = function(args) {
	var disclaimer = args["disclaimerDiv"];
	disclaimer.fadeOut(1000);
	return true;
}

$( function(args) {
	di.onload();
	
	// Add site-specific onload code below
} );

