   var selectedTab;
   var language = "en_US"
   var map = 
   {
		'home': 
		{
			  <!-- TAB IMAGES -->
			 'active': '../../../images/products/surfacetags/tabs/homeActive.jpg',
			 'inactive': '../../../images/products/surfacetags/tabs/homeInActive.jpg',
			 <!-- CONTENT -->
			 'tabdiv': 'homeTab',
			 'contentdiv': 'homeContent',
			 <!-- PLAYER NORMAL MODE -->
			 'playermode':'none',
			 'videoSrc': 'videos/home_en.mov',
			 'sft3Src': ''
			 <!-- PLAYER LAYER MODE -->
		},
		'eCommerce': 
		{
			  <!-- TAB IMAGES -->	
			 'active': '../../../images/products/surfacetags/tabs/eCommerceActive.jpg',
			 'inactive': '../../../images/products/surfacetags/tabs/eCommerceInActive.jpg',
			 <!-- CONTENT -->
			 'tabdiv': 'eCommerceTab',
			 'contentdiv': 'ecommerceContent',
			 <!-- PLAYER NORMAL MODE -->
			 'playermode':'playerModeExternalInterface',
			 'videoSrc': 'videos/ecommerce_en.mov',
			 'sft3Src': '../../../video/sfts/ecommerce.sft3',
			 <!-- PLAYER LAYER MODE -->
		     'playerpopupwidth':756,
		  	 'playerpopupheight':360,	
		  
			 'playerpopupmode':'playerModeECommerce',
			 'videoPopupSrc': 'videos/ipodnano.mov',
			 'sft3PopupSrc': '../../../video/sfts/iPodNano13(multilanguage).sft3',
			 'overlayText' : 'Drag the desired product directly into the online shop!'
		},
		'information': 
		{
			  <!-- TAB IMAGES -->
			 'active': '../../../images/products/surfacetags/tabs/informationActive.jpg',
			 'inactive': '../../../images/products/surfacetags/tabs/informationInActive.jpg',
			 <!-- CONTENT -->
			 'tabdiv':'informationTab',
			 'contentdiv': 'informationContent',
			 <!-- PLAYER NORMAL MODE -->
			 'playermode':'playerModeExternalInterface',
			 'videoSrc': 'videos/information_en.mov',
			 'sft3Src': '../../../video/sfts/information.sft3',
			 <!-- PLAYER LAYER MODE -->
			 'playerpopupwidth':756,
		  	 'playerpopupheight':360,	
			 
			 'playerpopupmode':'playerModeInformation',
			 'videoPopupSrc': 'videos/iphone.mov',
			 'sft3PopupSrc': '../../../video/sfts/iPhone.sft3',
			 'overlayText' : ' Please click on the object in the video, in order to get further information.'
		},
		'informationNew': 
		{
			  <!-- TAB IMAGES -->
			 'active': '../../../images/products/surfacetags/tabs/informationActive.jpg',
			 'inactive': '../../../images/products/surfacetags/tabs/informationInActive.jpg',
			 <!-- CONTENT -->
			 'tabdiv':'informationTab',
			 'contentdiv': 'informationContent',
			 <!-- PLAYER NORMAL MODE -->
			 'playermode':'playerModeExternalInterface',
			 'videoSrc': 'videos/information_en.mov',
			 'sft3Src': '../../../video/sfts/information.sft3',
			 <!-- PLAYER LAYER MODE -->
			 'playerpopupwidth':848,
		  	 'playerpopupheight':503,	
			 
			 'playerpopupmode':'playerModeInformation_new',
			 'videoPopupSrc': 'videos/information_new.mov',
			 'sft3PopupSrc': '../../../video/sfts/information_new.sft3',
			 'overlayText' : ' Please click on the object in the video, in order to get further information.'
		},
		
		'inVideo': 
		{
		},
		'editor':
		{
			 <!-- TAB IMAGES -->
			 'active': '../../../images/products/surfacetags/tabs/editorActive.jpg',
			 'inactive': '../../../images/products/surfacetags/tabs/editorInActive.jpg',
			 <!-- CONTENT -->
			 'tabdiv':'editorTab',
			 'contentdiv': 'editorContent',
			 <!-- PLAYER NORMAL MODE -->
			 'playermode':'none',
			 'videoSrc': 'videos/editor.mov',
			 'sft3Src': ''
			 <!-- PLAYER LAYER MODE -->
		}
   };

   
   function setActive( tab ) 
   {
		if( selectedTab )
		{
		
			 var element = document.getElementById( selectedTab );
			 var tabdiv = document.getElementById( map[selectedTab].tabdiv );
			 if( tabdiv )
			 {
				  tabdiv.style.display = "none";
			 }
			 var contentdiv = document.getElementById( map[selectedTab].contentdiv );
			 if( contentdiv )
			 {
			 	 contentdiv.style.display = "none";
			 }
			 
			 element.src = map[selectedTab].inactive;
		}
		selectedTab = tab;
		
		element = document.getElementById( selectedTab );
		tabdiv = document.getElementById( map[selectedTab].tabdiv );
		if( tabdiv )
		{
			 tabdiv.style.display = "block";
		}
		contentdiv = document.getElementById( map[selectedTab].contentdiv );
		if( contentdiv )
		{
			 contentdiv.style.display = "block";
		}
		element.src = map[selectedTab].active;
		startVideo();
   };
   
   
   
   //Gets called from player  
   function getInitialVideo()
   {
		if( !selectedTab )
		{
			 setActive('home');
		}
		startVideo();
   };
   //Gets called from player  
   function getInitialPoupVideo()
   {
		startPopupVideo();
   };
   
   function startVideo()
   {
		var player = document.getElementById('flvPlayer');
		player.playVideo( map[selectedTab].videoSrc, map[selectedTab].sft3Src, map[selectedTab].playermode );
   };
   
   
   function startPopupVideo()
   {
	   var player = document.getElementById( mooFlash.options.replace );
	   //console.info( ">>_>"+ player );
	   player.playVideo( map[selectedTab].videoPopupSrc, map[selectedTab].sft3PopupSrc, map[selectedTab].playerpopupmode );
	   
	   //infoText
	   var infoText = document.getElementById( 'overlayInfoText' );
	   //console.info( ">>_>"+ infoText + "--->" + map[selectedTab].overlayText );
	   infoText.firstChild.nodeValue = map[selectedTab].overlayText;
   }
   