$(document).ready(function(){
    $('#topicSelect').bind('change', function(){
        var topic = $('#topicSelect').attr('value');
        var topicText = "";
        
        switch(topic)
        {
            case "Help with a game":
            topicText = "<p>Have questions about the games on our site?  Having trouble finding a particular game?  Looking for cheat codes, hints, or tips?  Ask away!  Please make sure that your question is as clear and specific as possible so we can help you faster!  We do speak 1337, but not fluently. </p>";
            break;
            
            case "Games Not Working":
            topicText = "<p>Please make sure that before submitting a question about a game not working you have followed all the suggestions listed on our <a href=\"http://crazymonkeygames.com/help.php\">Games not Working Page</a>.</p>";
            topicText += "<p>If you have followed all the suggestions and still have a problem please make sure to include as much information as possible.  For example, the game you are having trouble with, what error you receive, what steps have you done before encountering the error, and any additional information you can think of that will help us to better answer your question!</p>";
            break;
            
            case "Game Sponsorship":
            topicText = "<p>If you have questions about our Game Sponsorship Program please make sure you have read the information provided on our <a href=\" http://crazymonkeygames.com/sponsor.php\">Game Sponsorship Page</a>. If you still have questions ask them here and we’ll be happy to help.  Please be aware that we cannot release information regarding the amounts of past sponsorship payments or any other private developer details.</p>";
            topicText += "<p>If you have a finished game that you'd like to submit for sponsorship please do not use this contact form.  Instead, email your game to <a href=\"m&#97;ilto:&#115;&#112;&#111;&#110;&#115;&#111;&#114;&#64;&#99;&#114;&#97;&#122;&#121;&#109;&#111;&#110;&#107;&#101;&#121;&#103;&#97;&#109;&#101;&#115;&#46;&#99;&#111;&#109;\">&#115;&#112;&#111;&#110;&#115;&#111;&#114;&#64;&#99;&#114;&#97;&#122;&#121;&#109;&#111;&#110;&#107;&#101;&#121;&#103;&#97;&#109;&#101;&#115;&#46;&#99;&#111;&#109;</a> with full instructions and we'll evaluate it and get back to you as quickly as possible.</p>";
            break;
            
            case "Webmaster Inquiry":
            topicText = "<p>If you have a question about downloading one of our games and hosting it on your own website please make sure you have checked out our <a href=\"http://crazymonkeygames.com/download.php\">Games for your website page</a>. If you are interested in hosting any of the games listed at <a href=\"http://crazymonkeygames.com/download.php\">http://crazymonkeygames.com/download.php</a> go for it, as long as you follow our terms of use <a href=\"http://crazymonkeygames.com/downloadterms.php\">Terms of Use</a></p>";
            topicText += "<p>If you are having trouble with a particular game please make sure you provide as much detail as possible about your problem so that we can better assist you.</p>";
            break;
            
            case "Business Proposal":
            topicText = "<p>Thank you for your interest in doing business with CrazyMonkeyGames.com.  We will read and consider all proposals, but due to the volume of inquiries we receive we cannot respond to every one.  If we are interested in discussing your proposal further we’ll contact you.   For the best chance at getting a response please be sure that you include as much detail as possible regarding your proposal.  Thank you for your understanding.</p>";
            break;
            
            case "Advertising inquiry":
            topicText = "<p>Thank you for your interest in purchasing advertising on CrazyMonkeyGames.com.  Please include as much detail as possible about your budget and the product you wish to advertise. </p>";
            topicText += "<p>Please be aware that we will not allow offensive content or annoying advertising formats such as pop-ups no matter how much you’re willing to pay.  If you have to ask if something is annoying or offensive then it probably is.</p>";
            topicText += "<p>If you represent an ad network interested in selling our ad space please do not contact us.  We’re not currently looking for any additional ad network partnerships.</p>";
            break;
            
            case "Other":
            topicText = "<p>Please provide as much detail as possible regarding your question or comment so that we can get back to you faster!   Thank you!!! </p>";
            break;
        }


        $('#topicDescription').hide().html(topicText).show(2000);

    });
    $('#topicDescription').hide();
});