﻿$(document).ready(function(){

	$(".msg_body").hide();
	$(".msg_head").toggle(function(){
	$(this).next(".msg_body").slideDown(100);
	}, function(){
	$(this).next(".msg_body").slideUp(300);
	});

$("#rates_select option[value='1']").attr('selected', 'selected');

	$('#rates_select').change(function(){   
	
	$("#rates .td_rate").html("---");
	
        $.ajax({
	
            type: "GET",
            url: "inc/rates/rates_viewer2.php",
            data: "country="+escape($(this).val()),
            success: function(html){

               $("#rates").html(html);
				
            }
        });
    });
   
   });