$(document).ready(function() {
		//
		// VIDEO LOGIC
		//--------------------------\
		// v0.1
		//
		//
		openVideoShare = function(linkTag){
			//
			//alert('attempting to open the share menu on video');
			addthis_open(linkTag, '', destinationURL+'video', videoPageTitle);
			//
		}
		//
		openVideo = function(){
			//
			openPopup('video'
			, 
			function(){
				$('#videoplayer').flash({   
					swf: 'http://www.luxurycollectiondestinations.com/flash/videoplayer.swf',   
					params: {play: true, wmode:'transparent', quality:'best'},   
					flashvars: {videoFile: videoFlv},   
					height: 292,  
					width: 452
				});
			}
			,
			function(){
				$('#videoplayer').html('');
			});
			//
			//videoOpen = true;
			//
		}
		//
		$('#destiantionVideo .video a.more').click(function(){
			$('#destiantionVideo .video .preview a').click();
		});
		$('#destiantionVideo .video .preview a').click(function(){
			//
			openVideo();
			//
		});
		//
});