$(document).ready(function(){
	$("#profile_link").click(function(e){
		$("#profile").css('display','block');
	});
});

function view_currency($currency)
{
  $(".grn").hide();
  $(".doll").hide();
  $(".euro").hide();
  $(".rub").hide();
  
  $(".currency_txt").empty();
  if($currency == "grn")
    $(".currency_txt").append("гривна");
  if($currency == "doll")
    $(".currency_txt").append("доллары");
  if($currency == "euro")
    $(".currency_txt").append("евро");
  if($currency == "rub")
    $(".currency_txt").append("рубли");
  
  $("."+$currency).show();
}
