/* © Copyright 2007 by Bram Bogaert - All Rights Reserved */

/*
	The generic partner-object template.
	Contains the configuration used to create a generic partner in the partners configuration.
*/
function contactUsPartner() {
	this.tooltip = "Contacteer ons om hier uw uw logo te zien";
	this.link = "mailto:italianevening@gmail.com";
	// Remark:
	// the max width of a logo is 185px (for a 4 column layout),
	// this is not enforced as IE7 (and below) can't handle it,
	// so not obliging this limit might result in a messy page.
	this.imgSrc = "../web/images/sponsors/uwLogo_w180.jpg";
}

// The configuration object
var CONFIG = {};

// Sets the active menu item on entering the site.
// Defaults to 0, but might be overridden during development for testing purposes.
CONFIG.initialMenuItem = 0;

// All menu items for the main menu.
// Optionally an initFunctionName can be configured. This function is executed on entering the page.
// Note:
//   Menu items that need an init function might not be visible to browsers with JavaScript disabled.
//   When creating the <noscript>-contents in the template html page,
//   these menu items might need to refer to a page like "unsupportedWithoutJavaScript.html".
//   eg:
//     <li><a href="./unsupportedWithoutJavaScript.html" target="contentFrame">Partners</a></li> 
CONFIG.menuMain = new Array(
										{title: "Home"},
										{title: "Sponsors", initFunctionName: "initPartnerScreen"},
										{title: "Team"},
										{title: "vzw Hachiko"}
									);

// The default partners for the partner screen.
// Overriding this default configuration should be done in a partner specific config.js script located
// in a partner specific directory that also contains all logo's.
// This is a good practice as typically the amount of partners will need to change/grow during the
// lifetime of the site, while the site's configuration (and content) remains mostly the same.
// When updating the list of partners it is better to keep the one updating the partners clear of
// other site specific configuration parameters.
CONFIG.partners = {
		premium: new Array(
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner()
							),
		medium: new Array(
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner()
							),
		basePlus: new Array(
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner()
							),
		base: new Array(
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner(),
								new contactUsPartner()
							)
	};

// The default amount of partner logo's shown on the same line (in one row).
// This setting can be overridden per type of partner.
CONFIG.defaultAmountOfPartnersPerRow = 4;

// Setting the active (short) url to the longer one gets rid of frames added by ad sponsored free domain providers.
CONFIG.noAds = {};
CONFIG.noAds.getRidOfFrames = true;
CONFIG.noAds.longUrlForSite = "http://users.telenet.be/try/ItalianEvening/";

