function changemenu(target) {

	//return true;

	document.getElementById('mainlink_home').className = 'mainlink_inactive';
	document.getElementById('mainlink_aboutus').className = 'mainlink_inactive';
	document.getElementById('mainlink_resources').className = 'mainlink_inactive';
	document.getElementById('mainlink_store').className = 'mainlink_inactive';
	document.getElementById('mainlink_donation').className = 'mainlink_inactive';
	document.getElementById('mainlink_help').className = 'mainlink_inactive';

	target.className = 'mainlink_active';

	document.getElementById('mainlink_home_bottom').className = 'bottommenu_none';
	document.getElementById('mainlink_aboutus_bottom').className = 'bottommenu_none';
	document.getElementById('mainlink_resources_bottom').className = 'bottommenu_none';
	document.getElementById('mainlink_store_bottom').className = 'bottommenu_none';
	document.getElementById('mainlink_donation_bottom').className = 'bottommenu_none';
	document.getElementById('mainlink_help_bottom').className = 'bottommenu_none';

	document.getElementById(target.id + '_bottom').className = 'bottommenu_block';

}


function changeFieldToActive(target) {

	if(target.className == 'passivefield') {
		target.value = '';
		target.className = 'activefield';
	}

}


function stateTracker(data) {
	//window.alert('stateTracker');
	//window.alert(data.oldstate + "\n" + data.newstate);
	if(data.newstate == 'COMPLETED') {
		//window.alert("video completed");
		video = document.getElementById("homepagevideo");
		image = document.getElementById("homepagepostvideo");
		video.style.display = 'none';
		image.style.display = 'block';
	}
}


function playerReady(object) {
	//window.alert("playerReady\n" + object.id + "\n" + object.version);
	var player = document.getElementById(object.id);
	//window.alert(player);
	player.addModelListener("STATE", "stateTracker");
}

