function showLCDialog(targetSKU, defaultVideo){
	//correct for interactive videos that are not using the SKU
	targetSKU=LCVideos.correctSKUs(targetSKU)
	if(LCVideos.phones[targetSKU]!=null){
		if(!LCVideos.dialog){
			//Initialize the dialog if it is not initialized
	       LCVideos.init();
	    }
		LCVideos.makeInitialDisplay(targetSKU, defaultVideo);
		LCVideos.dialog.center();
		if(LCVideos.dialog.y < document.documentElement.scrollTop){
			LCVideos.dialog.moveTo(LCVideos.dialog.x,parseInt(document.documentElement.scrollTop+2));
		}
		LCVideos.dialog.show();
	}	
};

function doLCPopup(){
	var targetSKU=location.href.getParam('phoneSKU');
	var defaultVideo=location.href.getParam('videoType');
	//correct for interactive videos that are not using the SKU
	targetSKU=LCVideos.correctSKUs(targetSKU)
	if(LCVideos.phones[targetSKU]!=null){
		LCVideos.makeInitialDisplay(targetSKU, defaultVideo);		
	}
	else{
		$('eLearningContentWrapper').setHTML('Invalid device selected')
	}

}


var LCVideos={
		dialog:null,
		types:new Hash(),
		currentSKU:null,
		currentButton:null,
		currentType:null,
		defaultOrder:["video","unique","interactive","tutorial","cnet","sprintId"],
		phones:new Hash(),
		baseTemplate:'',
		buttonTemplate:'<span class="eLearningButton"><img src="<=src=>" id="lcbutton_<=vType=>" class="lcVideoButton" onclick="LCVideos.showVideo(\'<=vType=>\')"/></span>',
		remove:function(){
			//LCVideos.dialog.remove();
			//LCVideos.dialog=null;
			LCVideos.dialog.hide();
			$('eLearningContentWrapper','eLearningNavButtons').setHTML('');
			LCVideos.currentSKU=null;
			LCVideos.currentButton=null;
			LCVideos.currentType=null;
		},
		init:function(){   
			this.dialog=new widgets.dialog({id:'lcDialogId',className:'podDialogClass',backingClass:'podBackgroundClass',css:'position:absolute; z-index:200; width:880px; background-color:#fff;'},true);
			this.dialog.setContent(this.baseTemplate);			
			Events.attach($(this.dialog.backer.id),'closeLCDialogOverlay',false,true,true);
		},
		makeButtons:function(){
			var buttons="";
			for(var x=0; x<this.defaultOrder.length; x++){
				if(this.phones[this.currentSKU][this.defaultOrder[x]]){
					var obj={
						src:this.types[this.defaultOrder[x]].buttonOff,
						vType:this.defaultOrder[x]
					};
					buttons+=this.buttonTemplate.template(obj);
				}
			}
			$('eLearningNavButtons').setHTML(buttons);
		},
		showVideo:function(vtype){
			this.toggleButtons(vtype);
			this.currentButton="lcbutton_"+vtype;
			this.currentType=vtype;
			this.types[vtype].generate();
			this.types[vtype].doOmniture();
		},
		toggleButtons:function(vtype){
			if(this.currentButton){
				$(this.currentButton).src=this.types[this.currentType].buttonOff;
			}
			$("lcbutton_"+vtype).src=this.types[vtype].buttonOn;		
		},
		correctSKUs:function(sku){
			if(sku=='I465'){
				sku='MOTI465BKT';
			}
			return sku
		},
		makeInitialDisplay:function(targetSKU, defaultVideo){
			LCVideos.currentSKU=targetSKU;
			LCVideos.makeButtons();
			var defVid=defaultVideo;
			if(!LCVideos.phones[LCVideos.currentSKU][defVid]){
				for(var x=0; x<LCVideos.defaultOrder.length; x++){
					if(LCVideos.phones[LCVideos.currentSKU][LCVideos.defaultOrder[x]]){
						defVid=LCVideos.defaultOrder[x];
						break;
					}
				}
			}
			Events.send('click',$("lcbutton_"+defVid));
		}
	};
Events.add('closeLCDialogOverlay','click',LCVideos.remove);


//base template for contents
LCVideos.baseTemplate='<div class="aRight"><a href="javascript:LCVideos.remove();" class="actionBox">CLOSE X</a></div>'+_NL;
//LCVideos.baseTemplate+='<h2 class="eLearningTitle">Videos</h2>'+_NL;
LCVideos.baseTemplate+='<div id="eLearningNavButtons"></div>'+_NL;
LCVideos.baseTemplate+='<div id="eLearningContentWrapper"></div>'+_NL;

//define the properties for each video type
LCVideos.types['video']={
	generate:function(sku){
		var tpl='<iframe name="FRAME1" src="<=src=>" width="<=width=>" height="<=height=>" frameborder="0" scrolling="no" ></iframe>';
		var obj={
			src:this.options.baseUrl+LCVideos.phones[LCVideos.currentSKU].video.deviceId,
			width:this.options.width,
			height:this.options.height
		};
		var content=tpl.template(obj);
		$('eLearningContentWrapper').setHTML(content);
	},
	doOmniture:function(){
		try{
			Analytics.eComStore.trackVideo(LCVideos.currentSKU,LCVideos.phones[LCVideos.currentSKU].video.deviceId,"Video");
		}
		catch(e){}
	},
	options:{
		baseUrl:'/assets/olsvideo/mediaPlayer.html?m=showVideos&VideoID=0&selectedDeviceId=',		
		width:880,
		height:550
	},
	buttonOff:'/assets/images/common/buttons/bt_gr_video.gif',
	buttonOn:'/assets/images/common/buttons/bt_bl_video.gif'
};
LCVideos.types['unique']={
	generate:function(sku){
		var tpl='<iframe name="FRAME1" src="<=src=>" width="<=width=>" height="<=height=>" frameborder="0" scrolling="no" ></iframe>';
		var obj={
			src:LCVideos.phones[LCVideos.currentSKU].unique.videoUrl,
			width:this.options.width,
			height:this.options.height
		};
		var content=tpl.template(obj);
		$('eLearningContentWrapper').setHTML(content);
	},
	doOmniture:function(){
	
	},
	options:{
		width:880,
		height:550
	},
	buttonOff:'/assets/images/common/buttons/bt_gr_video.gif',
	buttonOn:'/assets/images/common/buttons/bt_bl_video.gif'
};
LCVideos.types['interactive']={
	generate:function(sku){
		var tpl='<iframe name="FRAME1" src="<=src=>" width="<=width=>" height="<=height=>" frameborder="0" scrolling="no" ></iframe>';
		var obj={
			src:this.options.baseUrl+LCVideos.phones[LCVideos.currentSKU].interactive.custId,
			width:this.options.width,
			height:this.options.height
		};
		var content=tpl.template(obj);
		$('eLearningContentWrapper').setHTML(content);
	},
	doOmniture:function(){
		try{
			Analytics.eComStore.trackVideo(LCVideos.currentSKU,LCVideos.phones[LCVideos.currentSKU].interactive.custId,"Interactive");
		}catch(e){}
	},
	options:{
		baseUrl:'http://64.211.90.9/iframe/phone.seam?custId=',
		width:880,
		height:729
	},
	buttonOff:'/assets/images/common/buttons/bt_gr_interactiveDemo.gif',
	buttonOn:'/assets/images/common/buttons/bt_bl_interactiveDemo.gif'
};
LCVideos.types['tutorial']={
	generate:function(sku){
		var tpl='<iframe name="FRAME1" src="<=src=>" width="<=width=>" height="<=height=>" frameborder="0" scrolling="no" ></iframe>';
		var obj={
			src:this.options.baseUrl+LCVideos.phones[LCVideos.currentSKU].tutorial.custId,
			width:this.options.width,
			height:this.options.height
		};
		var content=tpl.template(obj);
		$('eLearningContentWrapper').setHTML(content);
	},
	doOmniture:function(){
		try{
			Analytics.eComStore.trackVideo(LCVideos.currentSKU,LCVideos.phones[LCVideos.currentSKU].tutorial.custId,'Tutorial');
		}catch(e){}
	},
	options:{
		baseUrl:'http://64.211.90.9/iframe/tutorial.seam?crd=shop:shop&custId=',
		width:880,
		height:729
	},
	buttonOff:'/assets/images/common/buttons/bt_gr_tutorials.gif',
	buttonOn:'/assets/images/common/buttons/bt_bl_tutorials.gif'
};
LCVideos.types['cnet']={
	generate:function(sku){
		var tpl='<iframe name="FRAME1" src="<=src=>" width="<=width=>" height="<=height=>" frameborder="0" scrolling="no" ></iframe>';
		var obj={
			src:this.options.baseUrl+LCVideos.phones[LCVideos.currentSKU].cnet.videoId,
			width:this.options.width,
			height:this.options.height
		};
		var content=tpl.template(obj);
		$('eLearningContentWrapper').setHTML(content);
	},
	doOmniture:function(){
		try{
			Analytics.eComStore.trackVideo(LCVideos.currentSKU,LCVideos.phones[LCVideos.currentSKU].cnet.videoId,'cnet');
		}catch(e){}
	},
	options:{
		baseUrl:'/assets/olsvideo/cnetVideo.html?videoId=',
		width:880,
		height:450
	},
	buttonOff:'/assets/images/common/buttons/bt_gr_cnet.gif',
	buttonOn:'/assets/images/common/buttons/bt_bl_cnet.gif'
};

LCVideos.types['sprintId']={
	generate:function(sku){
		var tpl='<div style="float:left; margin:0 20px;"><iframe name="FRAME1" src="<=src=>" width="<=width=>" height="<=height=>" frameborder="0" scrolling="no" ></iframe></div>';
		tpl+='<div style="float:left; width:210px;"><h3 style="font-size:13pt; margin-bottom:15px;">Sprint ID</h3>';
		tpl+='<p>The latest Android&trade; innovation from Sprint allows you to quickly personalize your phone to complement your needs and interests. Select mobile ID Packs featuring apps, ringers, wallpapers, widgets and more. It\'s all about you and the things you love to do.  Have it all in a single click with Sprint ID.</p>';
		if(!nxVars.isCA){
			tpl+='<p><a href="http://support.sprint.com/ria/pages/index.jsp?ms=SprintID#/All" target="_top">Learn more about Sprint ID</a></p>';
		}
		tpl+='</div><div class="clearer"></div>';
		var obj={
			src:this.options.url,
			width:this.options.width,
			height:this.options.height
		};
		var content=tpl.template(obj);
		$('eLearningContentWrapper').setHTML(content);
	},
	doOmniture:function(){
		try{
			Analytics.eComStore.trackVideo(LCVideos.currentSKU,LCVideos.currentSKU,'sprintId');
		}catch(e){}
	},
	options:{
		url:'/assets/olsvideo/flvplayer/simplegray/sg.html?skin=snel.swf&height=364&width=592&video=http://content.mixsherpa.com.edgesuite.net/support/videos/sprintid/videos/sprintid_overview_elc_cc.flv',
		width:610,
		height:400
	},
	buttonOff:'/assets/images/common/buttons/bt_gr_sprint_id_v1_en.gif',
	buttonOn:'/assets/images/common/buttons/bt_bl_sprint_id_v1_en.gif'
};
 




//Device template
//LCVideos.phones["PALM120HK"]=new Hash({
//	video:{
//		deviceId:11868
//	},
//	unique:{  (this is for 1-off items that don't use standard video)
//		videoUrl:"/assets/learningcenter/flvShell.html?VideoID=0"
//	},
//	interactive:{
//		custId:7335
//	},
//	tutorial:{
//		custId:7335
//	},
//	cnet:{
//		videoId:3653
//	}
//});


//Centro
LCVideos.phones["PTR690HKP"]=new Hash({
	unique:{
		videoUrl:"/assets/learningcenter/flvShell.html?VideoID=0"
	},
	//interactive:{
		//custId:"9238"
	//},
	tutorial:{
		custId:"9238"
	},
	cnet:{
		videoId:"29497"
	}
});
//Centro Prewoned
LCVideos.phones["REC690HR1"]=new Hash({
	unique:{
		videoUrl:"/assets/learningcenter/flvShell.html?VideoID=0"
	},
	//interactive:{
		//custId:"9238"
	//},
	tutorial:{
		custId:"9238"
	},
	cnet:{
		videoId:"29497"
	}
});
//Motorola i880
LCVideos.phones["I880G"]=new Hash({
	video:{
		deviceId:"7335"
	},
	interactive:{
		custId:"7335"
	},
	tutorial:{
		custId:"7335"
	}
});
//Pearl
LCVideos.phones["SP8130RIM"]=new Hash({
	video:{
		deviceId:"9338"
	},
	interactive:{
		custId:"9338"
	},
	tutorial:{
		custId:"9338"
	}
});
//Curve
LCVideos.phones["SP8330RIM"]=new Hash({
	video:{
		deviceId:"9584"
	},
	interactive:{
		custId:"9584"
	},
	tutorial:{
		custId:"9584"
	}
});
//Rumor
LCVideos.phones["LG260KIT"]=new Hash({
	video:{
		deviceId:"9207"
	},
	interactive:{
		custId:"9207"
	},
	tutorial:{
		custId:"9207"
	}
});
//Instinct
LCVideos.phones["SPHM800ZKS"]=new Hash({
	video:{
		deviceId:"9515"
	},
	//interactive:{
		//custId:"9515"
	//},
	tutorial:{
		custId:"9515"
	}
});

//Palm Treo 800w
LCVideos.phones["PTR800HK"]=new Hash({
	video:{
		deviceId:"10121"
	},
	interactive:{
		custId:"10121"
	},
	tutorial:{
		custId:"10121"
	}
});
//Lotus LG600
LCVideos.phones["LG600KIT"]=new Hash({
	video:{
		deviceId:"10573"
	},
	//interactive:{
		//custId:"10573"
	//},
	tutorial:{
		custId:"10573"
	}
});
//Highnote SPHM630
LCVideos.phones["SPHM630ZBS"]=new Hash({
	video:{
		deviceId:"10539"
	},
	//interactive:{
		//custId:"10539"
	//},
	tutorial:{
		custId:"10539"
	}
});
//Touch MP6950SP
LCVideos.phones["MP6950SP"]=new Hash({
	video:{
		deviceId:"10325"
	},
	interactive:{
		custId:"10325"
	},
	tutorial:{
		custId:"10325"
	}
});
//Rant SPHM540
LCVideos.phones["SPHM540ZKS"]=new Hash({
	video:{
		deviceId:"10574"
	},
	//interactive:{
		//custId:"10574"
	//},
	tutorial:{
		custId:"10574"
	}
});
//BB 8350 (curve 8350 with google)
LCVideos.phones["SP8350RIM"]=new Hash({
	video:{
		deviceId:"10926"
	},
	//interactive:{
		//custId:"10926"
	//},
	tutorial:{
		custId:"10926"
	},
	cnet:{
		videoId:"50005078"
	}
});
//MOTI9KIT
LCVideos.phones["MOTI9KIT"]=new Hash({
	video:{
		deviceId:"11146"
	},
	interactive:{
		custId:"11146"
	},
	tutorial:{
		custId:"11146"
	}
});
//Samsung Instinct s30 - Copper
LCVideos.phones["SPHM810GNS"]=new Hash({
	video:{
		deviceId:"11159"
	},
	//interactive:{
		//custId:"11159"
	//},
	tutorial:{
		custId:"11159"
	},
	cnet:{
		videoId:"50005839"
	}
});
//Samsung Instinct s30 - Cobalt
LCVideos.phones["SPHM810HAS"]=new Hash({
	video:{
		deviceId:"11159"
	},
	//interactive:{
		//custId:"11159"
	//},
	tutorial:{
		custId:"11159"
	},
	cnet:{
		videoId:"50005839"
	}
});
//Treo PRO by Palm
LCVideos.phones["PTR850HK"]=new Hash({
	video:{
		deviceId:"11019"
	},
	//interactive:{
		//custId:"11019"
	//},
	tutorial:{
		custId:"11019"
	}
});
//Rumor2 by LG - Black
LCVideos.phones["LG265KIT"]=new Hash({
	video:{
		deviceId:"11145"
	},
	//interactive:{
		//custId:"11145"
	//},
	tutorial:{
		custId:"11145"
	}
});
//Rumor2 by LG - Blue
LCVideos.phones["LG265BUKIT"]=new Hash({
	video:{
		deviceId:"11145"
	},
	interactive:{
		custId:"11145"
	},
	tutorial:{
		custId:"11145"
	}
});
//MiFi NV2200WFDO
LCVideos.phones["NV2200WFDO"]=new Hash({
	unique:{
		videoUrl:"/assets/learningcenter/mififlvShell.html?VideoID=0"
	}
});
//PalmPre PALM100HK
LCVideos.phones["PALM100HK"]=new Hash({
	video:{
		deviceId:"11160"
	},
	//interactive:{
		//custId:"11160"
	//},
	tutorial:{
		custId:"11160"
	},
	cnet:{
		videoId:"50072623"
	}
});
//Stature I9
LCVideos.phones["I9"]=new Hash({
	video:{
		deviceId:"11146"
	},
	//interactive:{
		//custId:"11146"
	//},
	tutorial:{
		custId:"11146"
	},
	cnet:{
		videoId:"50005562"
	}
});
//SCP 2700
LCVideos.phones["SCP2700KPK"]=new Hash({
	video:{
		deviceId:"11320"
	},
	//interactive:{
		//custId:"11320"
	//},
	tutorial:{
		custId:"11320"
	}
});
//HTC Snap device
LCVideos.phones["SPS511BK"]=new Hash({
	video:{
		deviceId:"11503"
	},
	//interactive:{
		//custId:"11503"
	//},
	tutorial:{
		custId:"11503"
	}
});
//LG LX370 device
LCVideos.phones["LG370KIT"]=new Hash({
	video:{
		deviceId:"11504"
	},
	//interactive:{
		//custId:"11504"
	//},
	tutorial:{
		custId:"11504"
	},
	cnet:{
		videoId:"50073828"
	}
});
//Samsung exclaim device
LCVideos.phones["SPHM550ZKS"]=new Hash({
	video:{
		deviceId:"11506"
	},
	//interactive:{
		//custId:"11506"
	//},
	tutorial:{
		custId:"11506"
	},
	cnet:{
		videoId:"50073616"
	}
});
//LX 290
LCVideos.phones["LG290KIT"]=new Hash({
	video:{
		deviceId:"11644"
	}//,
	//interactive:{
		//custId:"11644"
	//},
	//interactive:{
		//custId:"11644"
	//}
});
//Clutch i465
LCVideos.phones["MOTI465BKT"]=new Hash({
	video:{
		deviceId:"11505"
	},
	//interactive:{
		//custId:"11505"
	//},
	//interactive:{
		//custId:"11505"
	//},
	cnet:{
		videoId:"50073251"
	}
});
//M560 - Green (samsung reclaim)
LCVideos.phones["SPHM560GNS"]=new Hash({
	video:{
		deviceId:"11603"
	},
	//interactive:{
		//custId:"11603"
	//},
	tutorial:{
		custId:"11603"
	},
	cnet:{
		videoId:"50075270"
	}
});
//M560 - Blue 
LCVideos.phones["SPHM560BLS"]=new Hash({
	video:{
		deviceId:"11603"
	},
	//interactive:{
		//custId:"11603"
	//},
	tutorial:{
		custId:"11603"
	}
});
//BB SP9630RIM
LCVideos.phones["SP9630RIM"]=new Hash({
	video:{
		deviceId:"11661"
	},
	//interactive:{
		//custId:"11661"
	//},
	tutorial:{
		custId:"11661"
	}
});
//SPHM330ZWS (M330 by Samsung)
LCVideos.phones["SPHM330ZWS"]=new Hash({
	video:{
		deviceId:"11768"
	},
	//interactive:{
		//custId:"11768"
	//},
	//interactive:{
		//custId:"11768"
	//},
	cnet:{
		videoId:"50077575"
	}
});
//SPHM240ZKS (M240 by samsung)
LCVideos.phones["SPHM240ZKS"]=new Hash({
	video:{
		deviceId:"11767"
	},
	//interactive:{
		//custId:"11767"
	//},
	//interactive:{
		//custId:"11767"
	//},
	cnet:{
		videoId:"50077010"
	}
});
//PPCT7380SP (htc touch pro2)
LCVideos.phones["PPCT7380SP"]=new Hash({
	video:{
		deviceId:"11766"
	},
	//interactive:{
		//custId:"11766"
	//},
	tutorial:{
		custId:"11766"
	},
	cnet:{
		videoId:"50076877"
	}
});
//SPHM850BSS Samsung Instinct HD 
LCVideos.phones["SPHM850BSS"]=new Hash({
	video:{
		deviceId:"11844"
	},
	//interactive:{
		//custId:"11844"
	//},
	tutorial:{
		custId:"11844"
	},
	cnet:{
		videoId:"50077646"
	}
});
//Samsung Intrepid SPHI350DLS
LCVideos.phones["SPHI350DLS"]=new Hash({
	video:{
		deviceId:"11864"
	},
	//interactive:{
		//custId:"11864"
	//},
	tutorial:{
		custId:"11864"
	},
	cnet:{
		videoId:"50078553"
	}
});
//HTC Hero APA6277KT
LCVideos.phones["APA6277KT"]=new Hash({
	video:{
		deviceId:"11863"
	},
	//interactive:{
		//custId:"11863"
	//},
	tutorial:{
		custId:"11863"
	},
	cnet:{
		videoId:"50077061"
	}
});
//Motorola Debut
LCVideos.phones["I856"]=new Hash({
	video:{
		deviceId:"11865"
	},
	//interactive:{
		//custId:"11865"
	//},
	tutorial:{
		custId:"11685"
	}
});
//Samsung Moment
LCVideos.phones["SPHM900ZKA"]=new Hash({
	video:{
		deviceId:"11866"
	},
	//interactive:{
		//custId:"11866"
	//},
	tutorial:{
		custId:"11866"
	},
	cnet:{
		videoId:"50078555"
	}
});
//SCP 3810 -Sanyo
LCVideos.phones["SCP3810KRD"]=new Hash({
	video:{
		deviceId:"11867"
	},
	//interactive:{
		//custId:"11866"
	//},
	//interactive:{
		//custId:"11866"
	//},
	cnet:{
		videoId:"50079849"
	}
});
//PALM120HK - PALM PIXIE
LCVideos.phones["PALM120HK"]=new Hash({
	video:{
		deviceId:"11868"
	},
	//interactive:{
		//custId:"11868"
	//},
	//interactive:{
		//custId:"11868"
	//},
	cnet:{
		videoId:"50079430"
	}
});
//Sanyo - Incognito
LCVideos.phones["SCP6760KBK"]=new Hash({
	video:{
		deviceId:"11869"
	},
	//interactive:{
		//custId:"11869"
	//},
	//interactive:{
		//custId:"11869"
	//},
	cnet:{
		videoId:"50080299"
	}
});
//BB - 8530
LCVideos.phones["RIM8530BK"]=new Hash({
	video:{
		deviceId:"RIM8530BK"
	},
	//interactive:{
		//custId:"RIM8530BK"
	//},
	tutorial:{
		custId:"RIM8530BK"
	}
});
//Lotus - Elite
LCVideos.phones["LG610KIT"]=new Hash({
	video:{
		deviceId:"LG610KIT"
	},
	//interactive:{
		//custId:"LG610KIT"
	//},
	//interactive:{
		//custId:"LG610KIT"
	//},
	cnet:{
		videoId:"50082477"
	}
});
//Motorola - Brute
LCVideos.phones["MOTI680KIT"]=new Hash({
	video:{
		deviceId:"MOTI680KIT"
	},
	//interactive:{
		//custId:"MOTI680KIT"
	//},
	//interactive:{
		//custId:"MOTI680KIT"
	//},
	cnet:{
		videoId:"50082732"
	}
});
//Sierra - Overdrive
LCVideos.phones["SWW8013G4G"]=new Hash({
	video:{
		deviceId:"SWW8013G4G"
	}//,
	//interactive:{
		//custId:"MOTI680KIT"
	//},
	//interactive:{
		//custId:"MOTI680KIT"
	//}
});
// LG Rumor Touch
LCVideos.phones["LG510KIT"]=new Hash({
	video:{
		deviceId:"LG510KIT"
	},
	//interactive:{
		//custId:"LG510KIT"
	//},
	tutorial:{
		custId:"LG510KIT"
	},
	cnet:{
		videoId:"50085731"
	}
});
// BlackBerry Bold
LCVideos.phones["SPRIM9650"]=new Hash({
	video:{
		deviceId:"SPRIM9650"
	},
	//interactive:{
		//custId:"SPRIM9650"
	//},
	tutorial:{
		custId:"SPRIM9650"
	},
	cnet:{
		videoId:"50088385"
	}
});
// BlackBerry non Camera Bold
LCVideos.phones["SPRIM9650N"]=new Hash({
	video:{
		deviceId:"SPRIM9650"
	},
	//interactive:{
		//custId:"SPRIM9650"
	//},
	tutorial:{
		custId:"SPRIM9650"
	},
	cnet:{
		videoId:"50088385"
	}
});
//EVO
LCVideos.phones["APA9292KT"]=new Hash({
	video:{
		deviceId:"APA9292KT"
	},
	//interactive:{
		//custId:"APA9292KT"
	//},
	tutorial:{
		custId:"APA9292KT"
	}//,
	//cnet:{
		//videoId:"50087848"
	//}
});
//Motorola I1
LCVideos.phones["MOT1KIT"]=new Hash({
	video:{
		deviceId:"MOT1KIT"
	},
	//interactive:{
		//custId:"MOT1KIT"
	//},
	tutorial:{
		custId:"MOT1KIT"
	}
});
//Samsung Intercept
LCVideos.phones["SPHM910BKS"]=new Hash({
	video:{
		deviceId:"SPHM910BKS"
	},
	//interactive:{
		//custId:"SPHM910BKS"
	//},
	tutorial:{
		custId:"SPHM910BKS"
	}
});
//Samsung EPIC
LCVideos.phones["SPHD700BKS"]=new Hash({
	video:{
		deviceId:"SPHD700BKS"
	},
	sprintId:{
		sprintId:true
	},
	tutorial:{
		custId:"SPHD700BKS"
	}
});
// PRO-700 by Sanyo
LCVideos.phones["PRO700KTA"]=new Hash({
	cnet:{
		videoId:"50002616"
	}
});

//LG Remarq
LCVideos.phones["LGLN240KIT"]=new Hash({
	cnet:{
		videoId:"50088890"
	}
});

//Samsung Seek
LCVideos.phones["SPHM350ZKS"]=new Hash({
	cnet:{
		videoId:"50088480"
	}
});


// I335
LCVideos.phones["I335"]=new Hash({
	cnet:{
		videoId:"31767"
	}
});


//Samsung Restore
LCVideos.phones["SPHM570GNS"]=new Hash({
	cnet:{
		videoId:"50089593"
	}
});

// I576
LCVideos.phones["I576"]=new Hash({
	cnet:{
		videoId:"50003704"
	}
});


// I776
LCVideos.phones["I776"]=new Hash({
	cnet:{
		videoId:"50004733"
	}
});

// I365
LCVideos.phones["I365"]=new Hash({
	cnet:{
		videoId:"50003878"
	}
});

//Motorola Renegade V950 
LCVideos.phones["MOTV950EKT"]=new Hash({
	cnet:{
		videoId:"50003868"
	}
});

//Motorola i890
LCVideos.phones["MOTI890KIT"]=new Hash({
	cnet:{
		videoId:"50085740"
	}
});

//BB 9330 Curve 3g
LCVideos.phones["SPRIM9330"]=new Hash({
	video:{
		deviceId:"SPRIM9330"
	},
	//interactive:{
		//custId:"SPRIM9330"
	//},
	tutorial:{
		custId:"SPRIM9330"
	}
});

//Sanyo Innuendo
LCVideos.phones["SCP6780KIT"]=new Hash({
	video:{
		deviceId:"SCP6780KIT"
	},
	//interactive:{
		//custId:"SPRIM9330"
	//},
	tutorial:{
		custId:"SCP6780KIT"
	}
});
//Sanyo ZIO
LCVideos.phones["SCP8600KIT"]=new Hash({
	video:{
		deviceId:"SCP8600KIT"
	},
	sprintId:{
		sprintId:true
	}//,
	//interactive:{
		//custId:"SPRIM9330"
	//},
	//tutorial:{
		//custId:"SCP8600KIT"
	//}
});

//Samsung Transform
LCVideos.phones["SPHM920BKS"]=new Hash({
	video:{
		deviceId:"SPHM920BKS"
	},
	sprintId:{
		sprintId:true
	}//,
	//interactive:{
		//custId:"SPHM920BKS"
	//},
	//tutorial:{
		//custId:"SPHM920BKS"
	//}
});
//BB Syle
LCVideos.phones["SPRIM9670"]=new Hash({
	video:{
		deviceId:"SPRIM9670"
	},
	tutorial:{
		custId:"SPRIM9670"
	}
});
//LG Optimus
LCVideos.phones["LG670KIT"]=new Hash({
	video:{
		deviceId:"LG670KIT"
	},
	sprintId:{
		sprintId:true
	}	
});
//Galaxy Tab
LCVideos.phones["SPHP1TABLT"]=new Hash({
	video:{
		deviceId:"SPHP1TABLT"
	},
	sprintId:{
		sprintId:true
	}
});
//EVO Shift
LCVideos.phones["APA7373KT"]=new Hash({
	video:{
		deviceId:"APA7373KT"
	}	
});
//Sanyo Taho
LCVideos.phones["SCP4100KIT"]=new Hash({
	video:{
		deviceId:"SCP4100KIT"
	}	
});
//Motarola i886
LCVideos.phones["MOTI886KIT"]=new Hash({
	video:{
		deviceId:"MOTI886KIT"
	}	
});
//Dell Inspiron 11Z
LCVideos.phones["DEL11ZNBK"]=new Hash({
	video:{
		deviceId:"DEL11ZNBK"
	}	
});
//Dell Inspiron 1012
LCVideos.phones["DEL1012NBK"]=new Hash({
	video:{
		deviceId:"DEL1012NBK"
	}	
});
//HTC Arrive
LCVideos.phones["WPST7575KT"]=new Hash({
	video:{
		deviceId:"WPST7575KT"
	}	
});
//ECHO
LCVideos.phones["SCP9300KIT"]=new Hash({
	video:{
		deviceId:"SCP9300KIT"
	}	
});
//Samsung Nexus S 4G
LCVideos.phones["SPHD720KIT"]=new Hash({
	video:{
		deviceId:"SPHD720KIT"
	}	
});
//Samsung Replenish
LCVideos.phones["SPHM580BKS"]=new Hash({
	video:{
		deviceId:"SPHM580BKS"
	},
	sprintId:{
		sprintId:true
	}
});
//Motorola XPRT
LCVideos.phones["MOTOMB612"]=new Hash({
	video:{
		deviceId:"MOTOMB612"
	}	
});
//EVO 3D
LCVideos.phones["APX515CKT"]=new Hash({
	video:{
		deviceId:"APX515CKT"
	}	
});
//EVO View
LCVideos.phones["ATP515CKIT"]=new Hash({
	video:{
		deviceId:"ATP515CKIT"
	}	
});
//Photon
LCVideos.phones["MOTOMB855"]=new Hash({
	video:{
		deviceId:"MOTOMB855"
	}	
});
//Samsung Conquer
LCVideos.phones["SPHD600BKS"]=new Hash({
	video:{
		deviceId:"SPHD600BKS"
	}	
});
//BlackBerry Torch 9850
LCVideos.phones["SP9850RIM"]=new Hash({
	video:{
		deviceId:"SP9850RIM"
	}	
});
//BlackBerry Bold 9930
LCVideos.phones["SP9930RIM"]=new Hash({
	video:{
		deviceId:"SP9930RIM"
	}	
});
//Samsung EpicTM Touch 4G
LCVideos.phones["SPHD710KIT"]=new Hash({
	video:{
		deviceId:"SPHD710KIT"
	}	
});
//LG Marquee
LCVideos.phones["LG855KIT"]=new Hash({
	video:{
		deviceId:"LG855KIT"
	},
	sprintId:{
		sprintId:true
	}
});
//BB Curve 9350
LCVideos.phones["SRIMR010"]=new Hash({
	video:{
		deviceId:"SRIMR010"
	}	
});
//Motorola Admiral
LCVideos.phones["MOT603KIT"]=new Hash({
	video:{
		deviceId:"MOT603KIT"
	}	
});
//Kyocera Milano
LCVideos.phones["KYC5120BKS"]=new Hash({
	video:{
		deviceId:"KYC5120BKS"
	}	
});
//Samsung Transform Ultra
LCVideos.phones["SPHM930KIT"]=new Hash({
	video:{
		deviceId:"SPHM930KIT"
	},
	sprintId:{
		sprintId:true
	}
});
//HTC Kingdom
LCVideos.phones["APC715CKT"]=new Hash({
	video:{
		deviceId:"APC715CKT"
	}	
});
//Kyocera DuraCore
LCVideos.phones["KYE4210KIT"]=new Hash({
	video:{
		deviceId:"KYE4210KIT"
	}	
});
//Express from Sprint
LCVideos.phones["PCDM650KT"]=new Hash({
	video:{
		deviceId:"PCDM650KT"
	}	
});
//Samsung M370
LCVideos.phones["SPHM370BKT"]=new Hash({
	video:{
		deviceId:"SPHM370BKT"
	}	
});
//ZTE OPTIK
LCVideos.phones["ZTESV55TAB"]=new Hash({
	video:{
		deviceId:"ZTESV55TAB"
	}	
});
