// JavaScript Document
$(document).ready(function(){
	
	var tourVideos = new Array;
	
	// setup list of supported tour videos.
	tourVideos["grandCel"] = {fam:"lasVegasTours", dirName:"grandCel", width:625, height:360};
	tourVideos["goldenEagle"] = {fam:"lasVegasTours", dirName:"goldenEagle", width:625, height:360};
	tourVideos["visionary"] = {fam:"lasVegasTours", dirName:"visionary", width:625, height:360};
	tourVideos["grandVoyager"] = {fam:"lasVegasTours", dirName:"grandVoyager", width:625, height:360};
	tourVideos["grandDeluxe"] = {fam:"lasVegasTours", dirName:"grandDeluxe", width:625, height:360};
	tourVideos["northCanyon"] = {fam:"southRimTours", dirName:"northCanyon", width:625, height:360};
	tourVideos["imperial"] = {fam:"southRimTours", dirName:"imperial", width:625, height:360};
	tourVideos["grandDiscovery"] = {fam:"southRimTours", dirName:"grandDiscovery", width:625, height:360};
	tourVideos["canyonRiver"] = {fam:"southRimTours", dirName:"canyonRiver", width:625, height:360};
	tourVideos["airLandSunset"] = {fam:"southRimTours", dirName:"airLandSunset", width:625, height:360};
	
	
	function FireColorBox( _myBox, _myVideoKey) {
		var _width = 0;
		var _height = 0;
		var _hrefTarget = "";
		
		if (_myBox == "video") {
			_myParams = tourVideos[_myVideoKey];
			_width = _myParams.width;
			_height = _myParams.height;
			_hrefTarget = "http://www.papillon.com/acc_img/PAP_NTL/" + _myParams.fam +"/" + _myParams.dirName + "/video.html";
		}
		if (_myBox == "comments") {
			_width = 825;
			_height=650;
			_hrefTarget = "http://gbs.labs.papillon.com/deploy/GBImage.html";
		}
		$.colorbox({speed:350, innerWidth:_width, innerHeight:_height, iframe:'true', href:_hrefTarget});
	}

	$("#tourVideo").click(function(){ 
		var specVideo = $("#tourVideo").attr("title");
		FireColorBox("video",specVideo);
	});
	
    $(".launchWindow").click(function(){ 
		FireColorBox("comments","")
	});


});
