$(document).ready(function(){
	$("#auth").click(function(){
		$("#regform").hide('slow');
		$("#login").show('slow');
		});
	$("#reg").click(function(){
		$("#login").hide('slow');
		$("#regform").show('slow');
		});
	$(".mainmenu ul li.not-selected a.amenul").click(function(e){
		if ($(this).siblings('ul').is(':visible'))
		{
			$(".menul").hide('slow');
		}
		else
		{
			$(".menul").hide('slow');
			$(this).siblings('ul').show('slow');
		}
		e.preventDefault();
	});
	
	var path = window.location.pathname;
	if (path!='/' && path!='')
	{
		var $link = $(".mainmenu a[href="+path+"]");
		
		if ($link.length>0)
		{
			$link.addClass('cur');
			$link.parents('ul.menul').show();
		}else{
			$('.mainmenu a').each(function(i){
				var hr = $(this).attr('href');
				if (hr!='/' && path.indexOf(hr)!=-1)
				{
					$(this).addClass('cur');
					$(this).parents('ul.menul').show();
				}
			});
		}
	}
	$(".content").height(760);
});
