jQuery(document).ready(function(){	
 										
								
	//Back to top slider
    jQuery('a[href=#totop]').click(function(){
        jQuery('html, body').animate({scrollTop:0}, 600);
        return false;
    });

	// FancyBox jQuery
	jQuery("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 


// Slider Homepage
	jQuery('#slider').cycle({
        fx: 'fade',
        speed: 3000,
		timeout: 5000,
        pager: '#controls',
		slideExpr: '.panel'
    });

   jQuery("input#nature_of_business_other").attr("disabled","disabled");
   jQuery('input#nature_of_business_other').addClass('disabled');
   jQuery("input#how_did_you_learn_about_rebeltoys_other").attr("disabled","disabled");
   jQuery('input#how_did_you_learn_about_rebeltoys_other').addClass('disabled');
   
   
   jQuery("#nature_of_business").change(function(){
     //set the select value
     var val = jQuery(this).val();
     if(val != "3") {
	    
       jQuery("input#nature_of_business_other").attr("disabled","disabled");
       jQuery('input#nature_of_business_other').addClass('disabled');
     } else {
       jQuery('input#nature_of_business_other').removeAttr('disabled');	
       jQuery('input#nature_of_business_other').removeClass('disabled');	
       jQuery('input#nature_of_business_other').addClass('required-entry');	
     }	 
    });

    jQuery("#how_did_you_learn_about_rebeltoys").change(function(){
     //set the select value
     var val = jQuery(this).val();
     if(val != "14") {
	    
       jQuery("input#how_did_you_learn_about_rebeltoys_other").attr("disabled","disabled");
       jQuery('input#how_did_you_learn_about_rebeltoys_other').addClass('disabled');
     } else {
       jQuery('input#how_did_you_learn_about_rebeltoys_other').removeAttr('disabled');	
       jQuery('input#how_did_you_learn_about_rebeltoys_other').removeClass('disabled');	
       jQuery('input#how_did_you_learn_about_rebeltoys_other').addClass('required-entry');	
     }	 
    });  

	
});
