/** beginning of file **/

if (Drupal.jsEnabled) {
  $(document).ready(function () {
    /* do your magic */
    $('#edit-amount-other').show();
    $('#olfs_your_donation .form-radios .form-radio').change(function(){
    	
    	var status = $(this).val()			
    	if(status == 'Other'){
    		$('#edit-amount-other').attr("disabled","disabled"); 
    		$('#edit-amount-other').removeAttr("disabled");				
    	  $('#edit-amount-other').keyup(function(){
    	  	var value = $('#edit-amount-other').val();
    	  	//value = value.replace(/\./, "");
					value = value.replace( /^((\d+(\.\d*)?)|((\d*\.)?\d+))$/, "");
    	  	if(value != ''){
    	  		$('#edit-amount-other').val('');
    	  		alert('Please enter a numeric/fractional value.');
    	  	}  	
    	  });
    	}
    	else{
    		//alert($(this).val());
    		$('#edit-amount-other').val('');
    		//$('#edit-amount-other').show();
    		$('#edit-amount-other').attr("disabled", "disabled");
    	}
    });

    var link_src = $('#embed-link').attr('rel');
    link_src = link_src+'?body_height='+$("#main_body").height();
    $('#embed-link').attr('rel', link_src);
  });
}


