$(document).ready(function() {
    $('#commentbox').css("display","none");
});  // end document.ready

// This function is used to dynamically load the main image
function loadImage() {

	var iNdx;

	var sVal;

	iNdx = Math.round(Math.random() * 2) + 1;

	sVal = "images/soong" + iNdx + ".jpg"

	document.write('<img src="' + sVal + '" name="mainImage" align="top" alt="Please click Refresh or Reload on your browser to view more photos.">');

}

function showcommentbox() {
    $('#commentbox').show('fadein');
    $('#comments').css('width','400px');
}