$(document).ready(function() { 
			
	$('a#alex_video_l').click(function() {
		$.blockUI({ 
			message: $('#alex_video'),
			css: { 
			width: '620px', height: '470px', border: '4px solid #9e9e9e', left: ($(window).width() - 620) /2 + 'px', top: ($(window).height() - 470) /2 + 'px', textAlign: 'left' },
			overlayCSS: { opacity: '0.75' } 
		}); 
	});

    $('a#dolan_video_l').click(function() {
        $.blockUI({
            message: $('#dolan_video'),
            css: {
            width: '620px', height: '470px', border: '4px solid #9e9e9e', left: ($(window).width() - 620) /2 + 'px', top: ($(window).height() - 470) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

    $('a#scott_video_l').click(function() {
        $.blockUI({
            message: $('#scott_video'),
            css: {
            width: '620px', height: '470px', border: '4px solid #9e9e9e', left: ($(window).width() - 620) /2 + 'px', top: ($(window).height() - 470) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

    $('a#michele_video_l').click(function() {
        $.blockUI({
            message: $('#michele_video'),
            css: {
            width: '620px', height: '470px', border: '4px solid #9e9e9e', left: ($(window).width() - 620) /2 + 'px', top: ($(window).height() - 470) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

    $('a#aaron_video_l').click(function() {
        $.blockUI({
            message: $('#aaron_video'),
            css: {
            width: '620px', height: '470px', border: '4px solid #9e9e9e', left: ($(window).width() - 620) /2 + 'px', top: ($(window).height() - 470) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

    $('a#melissa_video_l').click(function() {
        $.blockUI({
            message: $('#melissa_video'),
            css: {
            width: '620px', height: '470px', border: '4px solid #9e9e9e', left: ($(window).width() - 620) /2 + 'px', top: ($(window).height() - 470) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

    $('.close_mb').click(function() { $.unblockUI(); return false; });
			
}); 