
			function randimg() { }; 
			lp = new randimg() ; //-- lp = large picture
			la = new randimg(); //-- la = large alternate text
			sp = new randimg(); //-- sp = small picture
			sa = new randimg(); //-- sa = small picture alternate text
			lbp = new randimg(); //-- lbp = label picture
			lba = new randimg(); //-- lba = label picture alternate text
			pt = new randimg(); //-- pt = paragraph text
			ah = new randimg(); //-- ah = anchor href						
			at = new randimg(); //-- at = anchor picture
			ata = new randimg(); //-- ata = anchor picture alternate text
			n=3;
			
			//-------------Define Large Images and alternate text here ----------
					lp[0]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/HassleFree.jpg'
					la[0] = 'All Inclusive - Hassle-free'
					lp[1]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/StressFree.jpg'
					la[1] = 'All Inclusive - Stress-free'
					lp[2]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/CareFree.jpg'
					la[2] = 'All Inclusive - Care-free'
			//----------------------
			
			//--------------Define Small Images and alternate text here ---------
					sp[0]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/HassleFree_Sub.jpg'
					sa[0] = 'Snorkel in Aruba!'
					sp[1]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/StressFree_Sub.jpg'
					sa[1] = 'Pampered in Paradise'
					sp[2]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/CareFree_Sub.jpg'
					sa[2] = 'Kickin it in Cozumel'
			//----------------------
			
			//--------------Define Label Images and alternate text here ---------
					lbp[0]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/HassleFree_Title.gif'
					lba[0] = 'Snorkel in Aruba!'
					lbp[1]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/StressFree_Title.gif'
					lba[1] = 'Pampered in Paradise'
					lbp[2]= 'http://media.wwte.com/media/content/shared/graphics/micro/vacations/CareFree_Title.gif'
					lba[2] = 'Kickin it in Cozumel'
			//----------------------
			
			//--------------Define paragraph text here ---------
					pt[0]= 'Take your family on adventure.'
					pt[1]= 'Find yourself in the ocean breeze.'
					pt[2]= 'Sip in the sun and slip into fun'
			//----------------------
			
			//--------------Define anchor href here ---------
					ah[0]= 'vacationstyles/Default.aspx'
					ah[1]= 'resortgroups/Default.aspx'
					ah[2]= 'destinations/Default.aspx'
			//----------------------			
			
			//--------------Define anchor href picture here ---------
					at[0]= 'images/buttons/btn_explore_vacations.gif'
					at[1]= 'images/buttons/btn_explore_resorts.gif'
					at[2]= 'images/buttons/btn_explore_destinations.gif'
			//----------------------
			
			//--------------Define anchor href alternate text here ---------
					ata[0]= 'Explore Vacations'
					ata[1]= 'Explore Resorts'
					ata[2]= 'Explore Destinations'
			//----------------------
			
			i=Math.floor(Math.random() * n) ; 
			document.getElementById("imgLargePic").src = lp[i];
			document.getElementById("imgLargePic").alt = la[i];
			document.getElementById("imgSmallPic").src = sp[i];
			document.getElementById("imgSmallPic").alt = sa[i];
			document.getElementById("imgLabelPic").src = lbp[i];
			document.getElementById("imgLabelPic").alt = lba[i];
			document.getElementById("pText").innerHTML = pt[i];			
			document.getElementById("aLink").href = ah[i];						
			document.getElementById("imgExplore").src = at[i];
			document.getElementById("imgExplore").alt = ata[i];			
			
			function exploreresorts(){
				document.getElementById('imgExplore').src = document.getElementById('imgExplore').src.replace('.gif', '_mo.gif');
			}
			
			function exploreresortsout(){
				document.getElementById('imgExplore').src = document.getElementById('imgExplore').src.replace('_mo.gif', '.gif');
			}
			
			