/**
 *	This file contains a list of movies to load on
 *	the front page of the site.
 *
 *	@author Russell Francis
 *	@date 2006-01-13
 */
/**
 *	This function returns an array of movies which
 *	could possibly be displayed on the front page 
 *	of the site.
 */
function getMovies()
{
	var movieBase = 'gfx/media/';
	var movies = new Array();

	var movie1 = new Object();
	movie1.title='Welcome to the School of Art@Ohio University';
	movie1.width='760';
	movie1.height='400';
	movie1.video=movieBase + 'art-opening-01.swf';
	movies.push( movie1 );
	
	var movie1 = new Object();
	movie1.title='Welcome to the School of Art@Ohio University';
	movie1.width='760';
	movie1.height='400';
	movie1.video=movieBase + 'art-opening-02.swf';
	movies.push( movie1 );
	
	var movie1 = new Object();
	movie1.title='Welcome to the School of Art@Ohio University';
	movie1.width='760';
	movie1.height='400';
	movie1.video=movieBase + 'art-opening-03.swf';
	movies.push( movie1 );
	
	var movie1 = new Object();
	movie1.title='Welcome to the School of Art@Ohio University';
	movie1.width='760';
	movie1.height='400';
	movie1.video=movieBase + 'art-opening-04.swf';
	movies.push( movie1 );
	
	var movie1 = new Object();
	movie1.title='Welcome to the School of Art@Ohio University';
	movie1.width='760';
	movie1.height='400';
	movie1.video=movieBase + 'art-opening-05.swf';
	movies.push( movie1 );

	return( movies );
}
