//Mobile office page javascript

//class handles all button and thumbnail functions

var arrAutomate = {
		subMenu: [
			{
				title : "Gallery",
				thumbnails : [ 
					{ imgURL : "images/device/thumbnails/gallery_thumbnail_slot1.png" },
					{ imgURL : "images/device/thumbnails/gallery_thumbnail_slot2.png" },
					{ imgURL : "images/device/thumbnails/gallery_thumbnail_slot3.png" },
					{ imgURL : "images/device/thumbnails/gallery_thumbnail_slot4.png" },
					{ imgURL : "images/device/thumbnails/gallery_thumbnail_slot5.png" },
					{ imgURL : "images/device/thumbnails/gallery_thumbnail_slot6.png" }
				],
				heros : [
					{ imgURL : "images/device/screens/gallery_bb_ul_hero1.png" },
					{ imgURL : "images/device/screens/gallery_bb_ul_hero2.png" },
					{ imgURL : "images/device/screens/gallery_bb_ul_hero3.png" },
					{ imgURL : "images/device/screens/gallery_bb_ul_hero4.png" },
					{ imgURL : "images/device/screens/gallery_bb_ul_hero5.png" },
					{ imgURL : "images/device/screens/gallery_bb_ul_hero6.png" }
				],
				contentDiv : ""
			}
		]
		
}


setupGalleryEvents = function() {
	$('galThumb1Overlay').addEvent('click', function(){swapGalleryImage(1);});
	$('galThumb2Overlay').addEvent('click', function(){swapGalleryImage(2);});
	$('galThumb3Overlay').addEvent('click', function(){swapGalleryImage(3);});
	$('galThumb4Overlay').addEvent('click', function(){swapGalleryImage(4);});
	$('galThumb5Overlay').addEvent('click', function(){swapGalleryImage(5);});
	$('galThumb6Overlay').addEvent('click', function(){swapGalleryImage(6);});
	$('galThumb7Overlay').addEvent('click', function(){swapGalleryImage(7);});
	
}

swapGalleryImage = function(slotNumber) {
	$('galThumb0').className = 'galThumb1Off';
	$('galThumb1').className = 'galThumb1Off';
	$('galThumb2').className = 'galThumb2Off';
	$('galThumb3').className = 'galThumb3Off';
	$('galThumb4').className = 'galThumb4Off';
	$('galThumb5').className = 'galThumb5Off';
	$('galThumb6').className = 'galThumb6Off';
	$('galleryFlashOnState').style.display = 'none';
	$('heroGalleryLeft').innerHTML = "";
	if(slotNumber == 7 ) {
		$('galThumb0').className = 'galThumb0On';
		if(Browser.Engine.trident4) {
			$('heroGalleryLeft').style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='crop', src='')";
			$('heroGalleryLeft').style.background = "transparent";
		} else {
			$('heroGalleryLeft').style.background = "url() no-repeat transparent";
		}
		$('galleryFlashOnState').style.display = 'block';
		$('heroGalleryLeft').style.display = "none";
		$('heroGalleryFlash').style.display = "block";
	} else {
		$('heroGalleryFlash').style.display = "none";
		$('heroGalleryLeft').style.display = "block";
		$('galThumb'+slotNumber).className = 'galThumb'+slotNumber+'On';
		if(Browser.Engine.trident4) {
			$('heroGalleryLeft').style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='crop', src='"+arrAutomate.subMenu[0].heros[slotNumber-1].imgURL+"')";
			$('heroGalleryLeft').style.background = "transparent";
		} else {
			$('heroGalleryLeft').style.background = "url("+arrAutomate.subMenu[0].heros[slotNumber-1].imgURL+") no-repeat transparent";
		}
	}
}
