$(document).ready(function() {

//select all the a tag with name equal to modal
    $('a[rel$="modal"], div.active').live('click', function(e) {
        //Cancel the link behavior
        e.preventDefault();
        //Get the A tag
        var id = $(this).attr('href');

        //Get the screen height and width
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();

        //Set height and width to mask to fill up the whole screen
        $('#mask').css({'width':maskWidth,'height':maskHeight});

        //transition effect
        $('#mask').fadeIn();
        $('#mask').fadeTo("slow",0.7);

        //Get the window height and width
        var winH = $(window).height();
        var winW = $(window).width();


        //transition effect		
        $('#boxModal').fadeIn(500);

    });

    //if close button is clicked
    $('#boxModal .close').click(function(e) {
        //Cancel the link behavior
        e.preventDefault();
        $('#mask, .blockModal').hide();
    });

    //if mask is clicked
    $('#mask').click(function () {
        $(this).hide();
        $('#boxModal').hide();
    });

    $('#boxModal').hide(0);
});

function closeModal(){
	$('#mask, #boxModal').hide();
}
