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

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

    self.maleURL = 'http://www.mb01.com/lnk.asp?o=2616&c=918273&a=24211';
    
    /**
     * 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. The single women are 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);