/* JS for opening top blocks  */
$(document).ready(function()
    {
        $("a#link_auth").bind("mouseenter",function(){
          	$("#enter").fadeIn("1000");
            $("#welcome input:first").focus();
          });

        $("a#link_city").bind("mouseenter",function(){
          	$("#city").fadeIn("1000");
          });

        $("div.auth_out").bind("mouseleave",function(){
            $('#enter').fadeOut("1000");
		});

        $("#cityIn").bind("mouseleave",function(){
            $('#city').fadeOut("1000");
		});

        $("div.city_out").bind("mouseleave",function(){
            $('#city').fadeOut("1000");
		});

    }
);


        my_var = 0;


        function showForm1()
        {
            $('#enter').fadeIn(300);
            $("#welcome input:first").focus();
            my_var = 1;
        }

        function closeForm1()
        {
        	$('#enter').fadeOut(300);
        }
        function showForm2()
        {
             $('#city').fadeIn(300);
             my_var = 1;
        }

        function closeForm2()
        {
        	$('#city').fadeOut(300);
        }



        /*$('*').click(function() {
            if( $(this).attr("id") != "orange" && my_var != 1 )
                {
                    //alert( my_var "+" id );
                    $('#enter').fadeOut(300);
                    $('#city').fadeOut(300);
                }
            else
                {
                    my_var = 0;
                }
            });



/*---------------------------------*/