
	function thread(threadid, title, poster, threaddate, threadtime, message, postid)
	{
		this.threadid = threadid;
		this.title = title;
		this.poster = poster;
		this.threaddate = threaddate;
		this.threadtime = threadtime;
		// Post object, contains the post data
		this.post = new post(message, postid);
	}
	// This function is used to show the posts of the thread.
	function post(message, postid) {
		this.postid = postid;
		this.message = message;
	}
	var threads = new Array(6);
	threads[0] = new thread(5314507, '2011 University of Alabama internship program', 'Terry', '05/31/11', '02:54 PM','<font face="Arial, Helvetica, sans-serif"><big><span style="font-weight: bold;">University of &nbsp;Alabama &nbsp;Internship Program</span></big><br> Two University of Alabama marine science graduate students will be working &nbsp;Roatan waters this summer. Emily Parker\'s goal is to compare&nbsp;species diversity and quantity of the distant Pigeon cays to 5 mid-south shore Roatan reef sites. Cory MCormack will be GIS mapping 6 mid-south side reef sites using ESRI ArcGis. Both students will be at CCV for 8 weeks, June 12 to Aug 8. In addition, last year\'s intern, Julia Stevens will return for some follow-up on last year\'s study on lionfish bacteria. Evening presentations by the students are free to CoCo View guests.</font>','1268837848');
	threads[1] = new thread(5314492, 'School\'s Out Special - Kids Stay Free!', 'Terry', '05/31/11', '02:45 PM','<span class="tourname">CoCo View Resort&nbsp; Roatán</span> <span style="font-weight: bold;">School\'s Out Special - Kids Stay Free!<br></span> Junior divers and students 10-13 are free when staying in same room with 2 paid adulsts. Ages 14-17 are half price. 20% discount on scu ba courses. <span style="font-weight: bold;"><br> </span><br><a target="_blank" href="%20CoCo%20View%20Resort%20%20Roat%C3%83%C2%A1n%20%09School%27s%20Out%20Special%20-%20Kids%20Stay%20Free%21%20Junior%20divers%20and%20students%2010-13%20are%20free%20when%20staying%20in%20same%20room%20with%202%20paid%20adulsts.%20Ages%2014-17%20are%20half%20price.%2020%%20discount%20on%20scu%20ba%20courses."><a href="http://www.roatan.com/bulletins/CCVMay.html" target="_blank">http://www.roatan.com/bulletins/CCVMay.html</a></a><br>','1268837747');
	threads[2] = new thread(4581414, 'Sinking of Prince Albert', 'rtbdiver', '02/11/10', '04:27 AM','On Feb 11, 1985, 25 years ago, the Prince Albert was sunk<br>','38864178');
	threads[3] = new thread(4311464, 'CCV donation supports The Maria Fareri Children\'s Hospital at Westchester Medical Center.', 'Terry', '01/15/10', '07:39 AM','<font><font><font><font face="Century Schoolbook">A 7 night CoCo View dive package is to be auctioned at the Beneath the Sea show in Secaucus, NJ. </font></font></font></font><h5>Meadowlands Exposition Center March 26- 28, 2010</h5><font><font><font><font face="Century Schoolbook">Proceeds of the auction will benefit the Maria Fareri Children\'s Hospital at Westchester Medical Center.</font></font></font></font>','38056682');
	threads[4] = new thread(3958833, 'new weather link', 'rtbdiver', '12/02/09', '09:50 AM','<a href="http://www.ssd.noaa.gov/goes/east/watl/loop-avn.html" target="_blank">http://www.ssd.noaa.gov/goes/east/watl/loop-avn.html</a><br><br>This link is updated every hour. Check the NCEP box to see cold front position. The HDW-low box will show low altitude wind&nbsp; speed and direction<br><br>','36646453');
	threads[5] = new thread(3957849, 'New dive boat launched', 'Terry', '12/02/09', '07:56 AM','EZ Diver went out on unscheduled dive last week while CoCo I being repaired.<br>13 divers and three crew.&nbsp; EZ Diving and EZ DRiving.&nbsp; <br><br>Lotz of rain last week.&nbsp; Beautiful sun with wind this week. Stan Waterman visiting next week.','36642619');

