//* START: JQUERY SCRIPTS *//

// Ajax for loading content on demand in a specific container
// whichArea - use ID and class names
// whichURL - use absolute path or full URL(must be from the same domain or it will not work)
// whichImg - (optional) - use html code for the "loading" image, ie. <img src="/images/loading.gif" alt="loading">
function loadContent(whichURL,whichArea,whichImg) {	
		//default "loading" image
		if (!whichImg) { var whichImg = '<img src="/images/loading.gif" width="145" height="145"/>'; }
		$(whichArea).html(whichImg);
		setTimeout( function(){	$(whichArea).load(whichURL); }, 800);
}

//* END: JQUERY SCRIPTS *//
