/**
 * @author Dave Mauro
 */

function setLanguage(language)
{
	var today = new Date();
	today.setTime( today.getTime() );
	var expires = 365 * 1000 * 60 * 60 * 24; // Lasts one year
	var expiresDate = new Date( today.getTime() + (expires) );
	document.cookie = "language=" + language + ";expires=" + expiresDate;
	window.location.href = window.location.href;
}
