    $(document).ready(function() {
        $("h1").click(function() {
            window.location='index.php';
        });

		
        $("#h2screen").click(function() {
            window.location='screen.php';
        });

		
        $("#h2live").click(function() {
            window.location='live.php';
        });

		
        $("#h2special").click(function() {
            window.location='events.php';
        });
    });
