/*
#########################################################
#
# default javascript settings for the entire site
#
# Copyright:		2000-2008 S-Inside
# Project:			www.livefireconcepts.nl
# Platform:			Javascript
#
#########################################################
*/

// settings for this website
var $sHomepage = "index.html";					// where should site go to if loaded in frame
var $nScrollFaceColor = "#ff7d21";				// colors for scrollbars
var $nScrollArrowColor = "#000000";				// colors for scrollbars
var $nScrollTrackColor = "#fff6ef";				// colors for scrollbars
var $nScrollShadowColor = "#bcbaba";			// colors for scrollbars
var $nScrollHighlightColor = "#8a8a8a";			// colors for scrollbars
var $nScroll3dlightColor = "#d0cece";			// colors for scrollbars
var $nScrollDarkshadowColor = "#000000";		// colors for scrollbars
var $nErrorBoxWidth = 500;						// the width of the javascript error box
var $nErrorBoxHeight = 260;						// the height of the javascript error box
var $nImagePlaceWith = 0;
var $nImagePlaceHeight = 440;

// settings for image slide
var $sPath = "";								// extra path to images
var $nCounter = 1;								// counter to go to next array element
var $vActiveImage;								// the image that is shown	
var $bLoopEndless = true;						// must slide run in a loop
var $nHome;										// object for fade image
var $aImages = new Array();
var $nAmountImages = $aImages.length - 1;		// total amount of customers

// settings for nextbigimage
var $nNextImages = 10;
var $aNextImages = new Array();

var $sURL = "";									// URL for check language, to jump to right page/site
function extraStartFunctions() {
	// extra stuff that should start on onload
	if (document.getElementById("blendimage")) {
		switchImage();
	}
	externalLinks();
}