if ( ! WNDU) {
  var WNDU = {}
} // end if

WNDU.video = {
  playlist: [],
  player_xml: 'player_flv_maxi.xml',
  player_id: '',
	root_path: 'http://www.michianaguide.com/z_misc/ginger_valley/',
	show_player: function(p_id, p_width, p_height, auto_play) {
    this.player_id = p_id;		
    var flashvars = {};
      flashvars.configxml = this.root_path+this.player_xml;
      flashvars.flv = this.root_path+'videos/'+this.playlist[0].file;
      flashvars.startimage = this.root_path+'videos/'+this.playlist[0].image;   
      flashvars.width = p_width;
      flashvars.height = p_height;
      if(auto_play) flashvars.autoplay = 1;
    var params = {};
      params.allowfullscreen = "true";   
      params.allowscriptaccess = "true";          
    var attributes = {};
		  attributes.id = "wndu_player";
  	swfobject.embedSWF(this.root_path+"player_flv_maxi.swf?t=" + new Date().getTime() , this.player_id, p_width, p_height, "8", "false", flashvars, params, attributes);
	},
  play_video: function(video_index) {
    vid = this.playlist[video_index];
    document.getElementById('wndu_player').SetVariable("player:jsStop", "");
    document.getElementById('wndu_player').SetVariable("player:jsUrl", this.root_path+'videos/'+vid.file);
    document.getElementById('wndu_player').SetVariable("player:jsStartImage", this.root_path+'videos/'+vid.image);
    document.getElementById('wndu_player').SetVariable("player:jsPlay", "");
  },
	show_playlist: function(pl_id) {
    var pl = '<ul>';    
    for(i=0;i<this.playlist.length;i++) {
      pl += '<li><a href="#" onclick="WNDU.video.play_video(' + i + ');">' + this.playlist[i].title + '</a></li>';
    } // end for
    pl += '</ul>';
    document.getElementById(pl_id).innerHTML = pl;
	}
} // end object
