jQuery.noConflict();

function changeParentLocation() {
    self.parent.location.href = 'http://www.prescottpark.org/beamember.cfm';
    return true;
}

function ChangeView()
{
    var url = jQuery('#categories_sel option:selected').val();
    self.parent.location.href = url;
    return true;
}

function email_val()
{
    if(jQuery('#email').val() == '')
    {
        alert("Enter the Email Address or Sponsor's Name");
        return false;
    }
    else return true;
}


jQuery(document).ready(function($) {
    jQuery('#member_yes').click(function(){
       if(email_val())
       {
          self.parent.location.href = '/index.php/customer/account/login/';           
       }
       else
         $(this).attr("checked", false);     
       
    });
    
    jQuery('#member_no').click(function(){   
        self.parent.location.href = '/index.php/customer/account/login/';        
    });
    
    jQuery('#gobutton').click(function(){
        if (!jQuery("input[@name='memberD']:checked").val()) {
           alert('Please select any option in step one!');
           return false;
        }
        else {
            //var url = jQuery('#categories_sel option:selected').val();
            self.parent.location.href = '/index.php/customer/account/login/';
        }
    });
 


});

