$(document).ready (function () {
	// выделяем активный пункт меню
//	alert(location.href);
//	alert(location.hostname);
	$('.menu li').each(function () {
		var str=this.getElementsByTagName("a")[0].href;
		str=str.replace('http://'+location.hostname+'/',"");
		//alert(str+' - '+location.href.search(str));
		
		if (location.href.search(str)!=-1) this.className = "active";
	});
/*	
	$(".language li").click(function() {
		$("input[name='lang']").val($(this).attr('class'));
		$('#lang_form').submit();
	});
*/
	
	$("#login_button").click(function(){
	//	$("input[name='lang']").val($(this).attr('class'));
		$('#login_form').submit();
	});
	
	$("#logout_button").click(function(){
		$('#login_form').submit();
	});
	
	$("#login").click(function(){
		$(this).attr('class','enter_text');
	});
	
	$("#password").click(function(){
		$(this).attr('class','enter_text');
	});
	
	
	
});

