$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel_login").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel_login").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
	
	//change login link depending on choosen company
	$("#company").change(function () {
		if('amu' == $(this).val()){
			document.getElementById('Auth_Index_Login').action = 'http://tc.admiralmarkets.com.ua/auth/index/login';
		} else if ('am' == $(this).val()) {
			document.getElementById('Auth_Index_Login').action = 'https://tc.fxservice.com/auth/index/login';
		}
	});	
});
