/*
INCLUDES
**********************************************/
// specify which javascripts to include on the webpage
//js('/files/javascript/SCRIPTNAME.js');

/*
ON LOAD
*********************************************/
// jQuery 'onReady' script - runs when the document have been loaded, but before images
$(function(){
	validateForms();
	toggleMainMenu();
	toggleAreaMenu();
	activateAjaxShopping();
	autocompletePostalCode();
	productlistImage();
	postPolls();
	quizWizzard();
	tracktrace();
	feedReader();
	changeProductImage();
	flashLoad();
	openPopups();
	showInlineHelp();
	//variantSelection();
	
	// resize the left column as needed, so it fills out 100% of the content
	//resizeLeftColumn();
});

// resize the left column as needed, so it fills out 100% of the content 
function resizeLeftColumn(){
	var $this = $('#mainLeft');
	$this.height('auto');
	var parentHeight = $this.parent().innerHeight() - parseInt($this.parent().css('padding-top')) - parseInt($this.parent().css('padding-bottom'));
	$this.css({
		height: parentHeight + 'px'
	});
}
