 $(document).ready(function(){
    var city_show = 0;
    
   
    $('button[url]').click(function(){
	    document.location = $(this).attr('url');
    });

    $("#announce_filtr a").bind('click', function(){
       $(".announce_filtr").toggle();
    });

    $('#city_choice').bind('click', function(){
        $('.select_city').fadeToggle();
        city_show = 1;
    });

    $(".select_city").bind( 'clickoutside', function (){
        if(city_show != 1) {
            $('.select_city').fadeOut();
        }
        city_show = 0;

    });

    jQuery.fn.fadeToggle = function(speed, easing, callback) {
        return this.animate({opacity: 'toggle'}, speed, easing, callback);

    };

    $("#account_info_toggle").bind("click", function(){
        $("#account_info").toggle('slow');
    });

    $("#add_new_comment").click(function()
      {
            $('#new_comment').detach().prependTo('#add_comment0');
            $('#new_comment').css('display', 'block');
            $('#uplevel_id').val('0');
     });
   
    
 });

function addComment(num)
{
     $('#new_comment').detach().prependTo('#add_comment'+num);
     $('#new_comment').css('display', 'block');
     $('#uplevel_id').val(num);
}

