

$(function() {


  $("#startconvert").click(function() {

 		$('#convert-content').slideToggle('#convert-Status');
        $('#convert-Status').show("slow");

	  var unit = $("input#unit").val();
	  var from = $("select#from").val();
	  var to = $("select#to").val();

	  var dataString = 'unit='+ unit + '&from=' + from + '&to=' + to ;

		$.ajax({
      type: "POST",
      url: "moneyexchange.php",
      data: dataString,


      success: function(msg) {

        $('#convert-Status').slideToggle('#convert-return');
        $('#convert-return').show("slow");

        $('#convert-Result').html(msg)
        .hide()
        .fadeIn(1500, function() {

        });
      }
     });
    return false;
	});
});



