
$(function() {
	$('.video-resource a, a#view-demo').click(function(e) {
		e.preventDefault();
		
		//set the height of the overlay and position of the player window...
		$('#ui-widget-overlay').css('height',$(document).height()+'px');
		$('#video-player-container').css('top',$(document).scrollTop());
		
		//get the rel of the anchor, not necessarily the element that was clicked...
		if(e.target.rel) {
			video_id = e.target.rel;
		} else {
			video_id = $(e.target).parent().attr('rel');
		}
		
		//fade in the goods...
		$('#ui-widget-overlay').show();
		$('#ui-widget-overlay').fadeTo('fast', .5);
		$('#video-player-container').fadeIn('fast');
		
		//load the video
		$('#video-target').load("/ajax/get-movie.php", {'video_id': video_id});

		return false;
	});
	
	$('#close-video-player').click(function() {
		$('#video-target').replaceWith('<div id="video-target"></div>');
		$('#ui-widget-overlay').fadeTo('fast', 0);
		$('#ui-widget-overlay').hide();
		$('#video-player-container').fadeOut('fast');
	});

	$("a[rel^=gallery]").colorbox({ opacity:0.4 });
});

