$(document).ready(function() { 
			
	$('a#alex_profile_l, a#alex_profile_l2, a#alex_profile_l3').click(function() {
		$.blockUI({ 
			message: $('#alex_profile'),
			css: { 
			width: '660px', height: '360px', border: '4px solid #9e9e9e', left: ($(window).width() - 660) /2 + 'px', top: ($(window).height() - 360) /2 + 'px', textAlign: 'left' },
			overlayCSS: { opacity: '0.75' } 
		}); 
	});

    $('a#dave_profile_l, a#dave_profile_l2, a#dave_profile_l3').click(function() {
        $.blockUI({
            message: $('#dave_profile'),
            css: {
            width: '660px', height: '360px', border: '4px solid #9e9e9e', left: ($(window).width() - 660) /2 + 'px', top: ($(window).height() - 360) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

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

    $('a#justin_profile_l, a#justin_profile_l2, a#justin_profile_l3').click(function() {
        $.blockUI({
            message: $('#justin_profile'),
            css: {
            width: '660px', height: '360px', border: '4px solid #9e9e9e', left: ($(window).width() - 660) /2 + 'px', top: ($(window).height() - 360) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

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

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

    $('a#joel_profile_l, a#joel_profile_l2, a#joel_profile_l3').click(function() {
        $.blockUI({
            message: $('#joel_profile'),
            css: {
            width: '660px', height: '360px', border: '4px solid #9e9e9e', left: ($(window).width() - 660) /2 + 'px', top: ($(window).height() - 360) /2 + 'px', textAlign: 'left' },
            overlayCSS: { opacity: '0.75' }
        });
    });

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

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