$(document).ready(function(){

	$('.hidden').show();

	$('#rotator').cycle({ 
		fx:      'scrollDown', 
		speed:    600, 
		timeout:  5000,
		random: 1
	});
	
	$('#interested').change(function () {
	
		if($(this).val() == '3'){
			$('#other').attr('disabled',false);
			$('#other').focus()
		} else {
			$('#other').attr('disabled',true);
			$('#other').val('');
		}
	
	});
	

	
});