// Generate a Random Numbervar randomnumber = Math.round(Math.random()*4);// Select a movie and execute the corresponding functionif (randomnumber == 1){feature1();}if (randomnumber == 2){feature2();}else if (randomnumber == 3){feature3();}else if (randomnumber == 4){feature4();}//Functions to write out the correct feature.function feature1(){document.write("<img src=\"imagez/slovis_mast_01.jpg\" width=\"760\" height=\"240\" hspace=\"0\" vspace=\"0\" border=\"0\" alt=\"Serving Memphis and Beyond.\" />")}function feature2(){document.write("<img src=\"imagez/slovis_mast_02.jpg\" width=\"760\" height=\"240\" hspace=\"0\" vspace=\"0\" border=\"0\" alt=\"Serving Memphis and Beyond.\" />")}function feature3(){document.write("<img src=\"imagez/slovis_mast_03.jpg\" width=\"760\" height=\"240\" hspace=\"0\" vspace=\"0\" border=\"0\" alt=\"Serving Memphis and Beyond.\" />")}function feature4(){document.write("<img src=\"imagez/slovis_mast_04.jpg\" width=\"760\" height=\"240\" hspace=\"0\" vspace=\"0\" border=\"0\" alt=\"Serving Memphis and Beyond.\" />")}
