/**
 * @author Tim
 */

$(document).ready(function(){
	if(window.location.href.toLowerCase().indexOf("index.html") < 0){
		$(".frontpage").css("display", "block");
		$(".frontpage").click(function(){
			$(".frontpage").fadeOut(1500);
		});
		setTimeout(function(){
			$(".frontpage").fadeOut(1500);
		}, 2000);
	}
});

