// JScript source code
var at_accounts = {
	"novascotia_com":"novascotiatourism",
	"nouvelle-ecosse_com":"novascotiatourism",
	"novascotia_isl_ca":"jparsons",
	"nouvelle-ecosse_isl_ca":"jparsons",
	"www_novascotia_com":"novascotiatourism",
	"www_nouvelle-ecosse_com":"novascotiatourism",
	"novascotia":"tmusika",
	"nouvelle-ecosse":"tmusika"
};



// -- AddThis Code -- //
var addthis_pub = at_GetAccount();

// load the drop-down button code
var at_code;
if (document.location.protocol=="https:")
	at_code = '<script src="https://secure.addthis.com/js/152/addthis_widget.js" type="text/javascript"></script>';
else
	at_code = '<script src="http://s7.addthis.com/js/152/addthis_widget.js" type="text/javascript"></script>';
document.writeln(at_code);
// -- AddThis Code -- //

// --------------------------------------------------------------------------------
// at_GetAccount()
// Determines and returns the AddThis user account for the current request.
// --------------------------------------------------------------------------------
// Arguments:
//	- none
// Returns:
//	- none
// --------------------------------------------------------------------------------
function at_GetAccount() {
	// set default if domain name not available
	var dn=document.location.hostname.replace(".","_"),j=0;
	if (dn==null||dn=="") return at_accounts[0];
	// enumerate the hard-coded domains
	if (typeof(at_accounts[dn])!="undefined")
		return at_accounts[dn];
	return at_accounts[0];
}
