$(function() {
	$(".exchangeTableElements .exchpos").hover(function() { $(this).addClass("exchposAct"); $(this).prev().addClass("exchposAct"); }, function() { $(this).removeClass("exchposAct"); $(this).prev().removeClass("exchposAct"); }).click(function() { goToUrl($("a", this).attr("href")); });
	$(".exchangeButAddMap, .exchangeButAdd").click(function(event) { event.preventDefault(); showElement(".formForAdd"); hideElement(".exchangeButAddMap"); hideElement(".exchangeButAddBg"); });
	$(".ButtonexchangeCancel").click(function() { hideElement(".formForAdd"); showElement(".exchangeButAddMap"); showElement(".exchangeButAddBg"); });
	$(".exchangeTBox .exchangeInput").focus(function() { $(this).parent().parent().addClass("selected"); }).blur(function() { $(this).parent().parent().removeClass("selected"); });
	if($(".formForAdd").is(":visible")) { hideElement(".exchangeButAddMap"); hideElement(".exchangeButAddBg"); }

});
function setAction(action) { $("#action").val(action); $("#exchange").submit(); }
