$(document).ready(function(){
	// custom jquery for the video overlay piece
	var overlayLinks = $("a[rel='overlayVideo']");
	if (overlayLinks.length > 0){
		overlayLinks.click(function(){
			// open the video in an overlay window if possible
			if ($('#videoOverlay').length == 0){
				// create the overlay
				$('<div id="videoOverlay"></div>').appendTo('body').fadeIn();
			} else {
				$('#videoOverlay').fadeIn();
			}
			
			$('<div id="videoWindow"><ul id="videoWindowCloseLink" class="call-out-link"><li><a href="javascript:void(0);">close video</a></li></ul><br /><iframe src="'+$(this).attr('href')+'" id="videoIframe" noresize="noresize" frameborder="0" border="0" cellspacing="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></div>').appendTo('body').fadeIn();
			$('#videoWindowCloseLink a').click(function(){
				$('#videoOverlay').fadeOut();
				$('#videoWindow').hide().remove();
				return false;
			});
			$('#videoWindow').fadeIn();
			//$('#videoIframe').attr('src', $(this).attr('href'));
			$('#videoWindow').css('left', -(($('#videoWindow').width() - $('body').width()) / 2));
			return false;
		});
		
	}
});
