﻿/*************************************************************************************************************
   created: Chasz Rainsford
   Date: 08/03/09 
   Version: 1.0
   
   Description: CRM EMAIL RECONTACT SURVEY LP
***************************************************************************************************************/   

var ACZONE = ACZONE ||{};

ACZONE.surveySlide = function(){
    return{
        init: function(){
            jQuery(".choose_yes").click(function() {
                if (jQuery(".yes_questions").is(":hidden")) {
                    jQuery(".yes_questions").slideDown("slow");
                    }
                if (jQuery(".no_questions") .is(":visiable")){
                    jQuery(".no_questions").css('display','none');
                    }
            });
            jQuery(".choose_no").click(function() {
                if (jQuery(".no_questions").is(":hidden")) {
                    jQuery(".no_questions").slideDown("slow");
                    }
                 if (jQuery(".yes_questions") .is(":visiable")){
                    jQuery(".yes_questions").css('display','none');
                    }
            });
        }
    };
}();
jQuery(document).ready(function(){
    ACZONE.surveySlide.init();
});