$(document).ready(init); //jquery method: automatically calls init when the page is fully loaded. http://www.learningjquery.com/2006/09/introducing-document-ready

//this method is automatically called on init
function init()
{
	//alert("init()");
}
