// initialize a variable to hold the player instance in.
var player = null;
 
// triggers the play pause mechanism
function playPause (e) {
  if (!jQuery(this).hasClass('playing'))
  {
    player.sendEvent("PLAY", "true");
    jQuery(this).addClass('playing');
  }
  else
  {
    jQuery(this).removeClass('playing');
    player.sendEvent("PLAY", "false");
  }
 
  e.preventDefault();
}
 
jQuery(function($) {
  $("li.current_page_parent ul li a, li.current_page_item ul li a").prepend("&raquo; ");
  
 
  if (typeof SWFObject !== "undefined")
  {
    if (document.getElementById('video-preview-home')) {

      var s1 = new SWFObject('http://lakeharvest.com/videos/flvplayer.swf','player','452','218','9');
      s1.addParam('allowfullscreen','true');
      s1.addParam('allowscriptaccess','always');
      s1.addParam('flashvars','file=' + 'http://lakeharvest.com/videos/videobasket.mp4&backcolor=#292F30&frontcolor=#FFFFFF&controlbar=over&image=http://lakeharvest.com/images/1_LH-009-home_454x218_no-crop.jpg');
      s1.write('video-preview-home');
    }    
    
  }

});


