/*global $ */
var $x=jQuery.noConflict();
var GirlfriendSocial = {};

GirlfriendSocial.MaleRedirect = (function() {
    // Private members ============================================================================
    
    var self = {};

    self.maleURL = 'http://qdmil.com/click/?s=117343&c=457118';
    
    /**
     * If the male gender is chosen (0), redirect to the male signup page.
     */
    self.genderChange = function() {
        // If "male" was chosen
        if (0 == $x(this).val()) {
            // Check if user wants to go to the male signup page
            var answer = confirm('This site is for *women only* ( hence all the pink ). Most of the women here are married, taken, or recently single and not looking to talk to guys at all.  The single women are available on our partner site - Click Ok to Sign up for free and Start Meeting Ladies Today!');
            
            // If they do
            if (answer) {
                // Go
                window.location = self.maleURL;
            }
        }
        console.log($x(this).val());
        
    }
    
    // Public members =============================================================================
    var pub = {};
    
    /**
     * Initializes controls and data for this module
     */
    pub.init = function() {
        // Bind change event to gender select
        $x('#field_6').bind('change', self.genderChange);
    };
    
    return pub;
}) ();

// When the DOM is loaded, initialize this module
$x(document).ready(GirlfriendSocial.MaleRedirect.init);
