$(document).ready(function() {
	
	$("body").css("display", "none");

    $("body").fadeIn(2000);
    
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(1000, redirectPage);		
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
    $.Lightbox.construct({
        "show_helper_text": false,
        "show_linkback": false,
        "opacity": 0.5,
        "text": {
            "image": "",
            "of": '/',
            "close": "X",
            "closeInfo": "",
            "download": ""
        },
        "show_extended_info": true,
        "padding":		5
    });

});

