/**
 * Google Translate Menu
 *
 * @param void
 * @return void
 * @access public
 * @author Barry Keal
 * @version 1.1
 *
 *	This js file will display the combo box if it exists and reset the document location to
 * 	the translated page.
 *
**/


document.observe("dom:loaded",function(){
	if($("gtrans_carea")){
		$("gtrans_carea").show();
	}
});

function gtrans_reload(){
	var baz=$F("gtrans_combo");
	document.location=baz;
}
