Behaviour.addLoadEvent(
	function() {
		MM_preloadImages(
			'/i/navmain/nav-about-efi-over.gif',
			'/i/navmain/nav-products-over.gif',
			'/i/navmain/nav-support-over.gif',
			'/i/navmain/nav-news-over.gif',
			'/i/navmain/bullet-nav-slash-on.gif',
			'/i/navmain/bullet-nav-arrow-on.gif'
		);
	}
);

conditions = {
	'.conditional' : function(el)	{
		new InputCondition(
			el,
			document.getElementById('hider'),
			{
				difetto: false,
				yes: true
			}
		);
	}
};

Behaviour.register(conditions);

/*  Turns the ability to submit a form on and off based on if the checkbox is checked or not   */

function submitOnOff(name) {	
	var nameofform = name;

	var disableBtn = document.nameofform.disableCB.checked ? false : true;
	document.nameofform.Submit.disabled = disableBtn;	
}




