jQuery.fn.savings = function() {

			var slideSpeed = 400;
			
			var getValue = $('#tools_savingsCalc_value').val();
			
			var count = parseInt(getValue);
			var result = parseInt(count);
					
			result = result * 0.4;
		
			if (result < 100) { result = 100; } else { result = result; } 
			
			var result = Math.round(result);
			var saveResult = Math.round(count) - Math.round(result);
			var saveYearResult = Math.round(saveResult) * 12;
			
			if (count < 200 && count >= 100 ) { saveResult = 100 - saveResult; }
			
			$('.savingsCalcAnswer').append("<h1 class=\"main\">Your New Monthly Payment: &pound;"+ result + "*</h1><p>Your results, based on your current monthly repayments of &pound;"+getValue+":</p> <ul><li><span class=\"left\">New Payment: </span> <strong> £"+ result + "</strong></li><li><span class=\"left\">Monthly Saving: </span> <strong>£"+ saveResult +"</strong> </li><li><span class=\"left\">Yearly Saving: </span> <strong> £"+ saveYearResult +"</strong></li></ul><p><strong>For free, no obligation help and advice please complete the form below.</strong></p>").slideDown(1000);
	
}; // end of function