$(document).ready(function()
{
	var ff = $;
	ff('body').addClass('js');

	// form submit
	ff('a[id^="submit_"]').click(function()
	{
		ff(this)
			.parent()
			.parent()
			.submit()
	}); // End of form submit
	
	// form submit
	ff('a[id^="submit2_"]').click(function()
	{
		ff(this)
			.parent()
			.submit()
	}); // End of form submit

	// form submit
	ff('a[id^="submit3_"]').click(function()
	{
		ff(this)
			.parent()
			.parent()
			.parent()
			.parent()
			.parent()
			.submit()
	}); // End of form submit


	// auth form
	ff('#nav_auth').click(function()
	{
		ff('#form_auth')
			.toggleClass('auth_active')

		ff(this)
			.toggleClass('auth_active')
	}); // End of auth form

	// city chooser
	ff('#city-choose-link').click(function(){
		ff('#city-choose').slideToggle();
	});

	///////////////////////
	///////// new /////////
	///////////////////////

	// auth form
	ff('#enter-link').click(function()
	{
		ff('#auth').toggle();
	}); 
	
	ff('#close-button').click(function()
	{
		ff('#auth').toggle();
	});// End of auth form	
});