function playCrawleyVid() {
  sect = document.getElementById("flashcontent");
  trig = document.getElementById("vidTrigger");
  capt = document.getElementById("vidCaption");
  if( parseInt(sect.style.top) < 0 ) {
    sect.style.top = parseInt(sect.style.top) + 1000;
    var so = new SWFObject("crawley.swf", "proto", "100%", "100%", "8", "#3250a5");
    so.addParam("scale", "noorder");
    so.addParam("wmode", "opaque");
    so.write("flashcontent");
    trig.src = "images/blank.gif";
    capt.innerHTML = "Click to stop video";
  } else {
    sect.style.top = parseInt(sect.style.top) - 1000;
    sect.innerHTML = "";
    trig.src = "images/Products/ProdSidebarTop.png";
    capt.innerHTML = "Click image to play video";
  }
}