var fDesc=new Array();
fDesc[0] = "The Brooks family boarded The Neptune hoping for a relaxing family adventure. What they got was more than just an adventure, but a harrowing experience of disaster and close calls.
They also got a mother's perseverance to save her family when the perfect combination of storm, shoddy construction and bad judgement turns The Neptune into a ship-splitting disaster.
What they didn't expect was that would be what would bring them closer together than they'd ever thought possible.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}