//Hide script from older browsers 

	var theImages = new Array()
	theImages[0] = 'images/cover83.jpg'
	theImages[1] = 'images/cover83a.jpg'
	theImages[2] = 'images/cover83b.jpg'
	theImages[3] = 'images/cover83c.jpg'

	// do not edit anything below this line
	
	var j = 0
	var p = theImages.length;
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = theImages[i]
	}
	var whichImage = Math.round(Math.random()*(p-1));
	
	function showImage(){
	document.write('<img src="'+theImages[whichImage]+'"'+' hspace="5" vspace="5" border="1" alt="Keong &amp; Jin of Flamingo Bridal" title="Keong &amp; Jin of Flamingo Bridal">');
	}

	function showdate(){
			 d = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
			 m = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
			 today = new Date();
			 day = today.getDay();
			 date = today.getDate();
			 month = today.getMonth();
			 document.write(d[day]+", "+date+" "+m[month]+", "+today.getFullYear());
			 }

	function showyear(){
			 today = new Date();
			 document.write(today.getFullYear());
			 }

			 
	function MakeBkMark(strURL, strTitle){
		 if (document.all) {
		 	window.external.AddFavorite (strURL, strTitle);}
		else {alert("Sorry.  This only works in IE4 and above");}
		}
		
// end hiding contents
