
// Copyright (c) 2007-2008 Sonic Foundry, Inc. and Sonic Foundry 
// Media Systems, Inc. Neither this code nor any portion 
// thereof may be reproduced, altered, or otherwise changed, 
// distributed or copied, without the express written 
// permission of Sonic Foundry.
// All rights reserved.

LayoutOptions = function(){}

LayoutOptions.Image = function(imageFilename,imageUrl,height,width)
{
	this.ImageFilename=imageFilename;
	this.ImageUrl=imageUrl;
	this.Height = height;
	this.Width = width;
}


LayoutOptions.OnLoad=function()
{
    LayoutOptions.LoadLayoutImages();
}
LayoutOptions.LoadLayoutImages=function(){
   LayoutOptions.Images = new Array(6);
   LayoutOptions.Images["AdBanner"] = new LayoutOptions.Image("PlayerOptions/AdBanner.jpg","http://www.sonicfoundry.com","68","323");
   LayoutOptions.Images["TitleBanner"] = new LayoutOptions.Image("PlayerOptions/994e5340bd064467bac1f0891c1d136d.jpg","http://www.aegerion.com/","68","660");
   LayoutOptions.Images["SlideNotStarted"] = new LayoutOptions.Image("PlayerOptions/SlideNotStarted.jpg","","480","640");
   LayoutOptions.Images["SlideEnded"] = new LayoutOptions.Image("PlayerOptions/SlideEnded.jpg","","480","640");
   LayoutOptions.Images["SlideDefault"] = new LayoutOptions.Image("PlayerOptions/SlideDefault.jpg","","480","640");
   LayoutOptions.Images["PlayerNotStarted"] = new LayoutOptions.Image("PlayerOptions/PlayerNotStarted.jpg","","240","320");
};

LayoutOptions.VideoHeight=240;
LayoutOptions.VideoWidth=320;
LayoutOptions.SlideHeight=480;
LayoutOptions.SlideWidth=640;
LayoutOptions.PlayerHeight=584;
LayoutOptions.PlayerWidth=983;
LayoutOptions.DefaultPosition=1;
LayoutOptions.FullSizeViewer="Players/SlidePlayer/SlidePlayer.html";
LayoutOptions.PreviewViewer="Players/PreviewSlide.html";
LayoutOptions.ThemeImageBase="App_Themes/Mediasite/Images";
LayoutOptions.HideDateTime=false;
LayoutOptions.DoNotShowEndSlide=false;
LayoutOptions.ThemeId="Mediasite";
