
// Copyright (c) 2007-2009 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/be770737ce204646abc102906dc50dcb.jpg","http://www.hopkinsmedicine.org/","68","323");
   LayoutOptions.Images["TitleBanner"] = new LayoutOptions.Image("PlayerOptions/db2d08b016814574b8c4aec79a0c550a.jpg","http://www.hopkinsmedicine.org/","68","660");
   LayoutOptions.Images["SlideNotStarted"] = new LayoutOptions.Image("PlayerOptions/a532b4e1f57348e7841ae916eb2f360f.jpg","","480","640");
   LayoutOptions.Images["SlideEnded"] = new LayoutOptions.Image("PlayerOptions/fc7323774cfd4475bab68b30f0f440a6.jpg","","480","640");
   LayoutOptions.Images["SlideDefault"] = new LayoutOptions.Image("PlayerOptions/8c57c28e9dfe42fb9a0d79077423dd43.jpg","","480","640");
   LayoutOptions.Images["PlayerNotStarted"] = new LayoutOptions.Image("PlayerOptions/8d2233eeaf85421da4fbac11919a47a1.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";

