/*
#########################################################
#
# default javascript settings for the entire site
#
# Copyright:		2000-2011 S-Inside
# Project:			klaver5.nl
# Platform:			Javascript
#
#########################################################
*/

// settings for this website
var $nImagePlaceWidth = 0; 					// place holder for big_image, how much from middle op window, default 150;
//var $nImagePlaceHeight = 150;				// how much from top of page
var $sHomepage = "index.php";				// where should site go to if loaded in frame
var $nScrollFaceColor = "#cacaca";			// colors for scrollbars
var $nScrollArrowColor = "#ffffff";			// colors for scrollbars
var $nScrollTrackColor = "#ffffff";			// colors for scrollbars
var $nScrollShadowColor = "#7f7b7b";		// colors for scrollbars
var $nScrollHighlightColor = "#dff1fb";		// colors for scrollbars
var $nScroll3dlightColor = "#000000";		// colors for scrollbars
var $nScrollDarkshadowColor = "#f18a00";	// colors for scrollbars

// extra stuff per website that should start on onload
function extraStartFunctions() {
	
}


// extra stuff per website that should get started by jQuery
function extraJQueryFunctions() {
	// create round corners
	$('.corners').corner();
	$('.bottomcorners').corner("bottom");
	$('.topcorners').corner("top");
}

