$(document).ready(function(){

    // Open external links in new window
	$("a[href^=http://]").click(function(){
	   window.open(this.href);
	   return false;
	});
    
	$("a[rel]").overlay(); 

    // Entry Form
    $("#enterButton").click(function() {
        $('#overlay').css({
            "height": $(document).height()
        });
        $("#entryForm").show();
        $("#overlay").fadeIn(500);
        return false;
    })
    // Kill Preview
    $("#closeForm").click(function(){
        $("#overlay").hide();
        $("#entryForm").hide();
    });

    // Princess Quiz
    $("#quizBox").click(function() {
        $('#overlay').css({
            "height": $(document).height()
        });
        $("#princessQuiz").show();
        $("#overlay").fadeIn(500);
        return false;
    })
    // Kill Preview
    $("#closeQuiz").click(function(){
        $("#overlay").hide();
        $("#princessQuiz").hide();
    });

});

