$(function() {
    $("form#owners").submit(function () {
        country = $("select#country").val();
        state = $("select#state").val();
        
        if (state == '')
        {
            alert('Please select your state.');
        }
        else
        {            
            if (((state == 'MO') || (state =='AR') || (state == 'IL') || (state =='IA') || (state =='KS') || (state == 'OK') || (state == 'TX') || (state == 'CO')) && (country == 'United States'))
            {
                window.location = $("input#redirect").val();
            }
            else
            {
                $("div#popup").fadeIn();
            }
            $.post($(this).attr('action'), { country: country, state: state });

        }
        return false;
    });
    
    $("div#popup").click(function () {
       $(this).fadeOut(); 
    });
    
    $("a.man").hover(
        function() {
            $(this).html('Land Activities');
        },
        function() {
            $(this).html('');
        }
    );
    
    $("a.house").hover(
        function() {
            $(this).html('The Lodge');
        },
        function() {
            $(this).html('');
        }
    );
    
    $("a.door").hover(
        function() {
            $(this).html('Hotels');
        },
        function() {
            $(this).html('');
        }
    );
     
    $("a.water").hover(
        function() {
            $(this).html('Water Sports');
        },
        function() {
            $(this).html('');
        }
    );
});