/* <![CDATA[ */
// default text for search
var searchtext = "Search the Forums";
// when the DOM is ready
$(document).ready( function(){
	if (document.getElementById('search')) {
	var searchform = document.getElementById('search');
	// set the text in the email field to our default text
	searchform.keywords.value=searchtext;
	// if field is default text clear it out, otherwise leave it
	$('input#keywords').focus( function(){
		if(searchform.keywords.value==searchtext){
			searchform.keywords.value='';
		}
	});
	// if it is empty put the default text
	$('input#keywords').blur( function(){
		if(searchform.keywords.value==''){
			searchform.keywords.value=searchtext;
		}
	});
	// remove default text on submit
	$('form#search').submit( function(){
		if(searchform.keywords.value==searchtext){
			searchform.keywords.value='';
		}
	});
	}
	
});
/* ]]> */

/* functions to call when the page is loaded */
$(document).ready(function(){
  $('#geotrustExplanation').jqm(); // geotrust "what is this"
  //printThis(); // add print link inside anything with class="printThis"
  window.focus();

});

/* end functions to call when the page is loaded */