$(function() {  
	$("#images").cycle({fx: "fade", speed: 3500, timeout: 12500});
	
	$("#searchby").change(function () {
		var s =	$("#searchby option:selected").attr("value");
//		$("#middle p").text(s);
		if (s=="total") {
			
			$("#repayments").hide();
			$("#total").show();			
		}
		else if (s=="repayments") {
			$("#repayments").show();
			$("#total").hide();	
		}
});

});	
