/*	js/behaviors.css
	Description: Main Screen Styles
	Copyright: ©2007 The Weidner Foundation
	Author: Kenneth Willes <a href="kenwillesdesign.com">Ken Willes Design</a>
	Date: Sun Mar 25 11:54:27 EDT 2007
*/

// for newsletter
function clearItem(obj, text)
{
	if(obj.value == text) {
		obj.value = '';
	}
}

function switchLanguage(lang) { 
    u = location.href.split('/'); 
    u[3] = lang; 
    location.href = u.join('/'); 
}

// for the left menu
function rollOnL(node){
	node.style.background = "url(http://weidnerfoundation.org/images/tpl/layout/menu/rollover.gif) no-repeat right center";
}

function rollOffL(node){
	node.style.background = "none";
}

// for the right menu
function rollOnR(node){
	node.style.background = "url(http://weidnerfoundation.org/images/tpl/layout/menu/rollover.gif) no-repeat left center";
}

function rollOffR(node){
	node.style.background = "none";
}
