$(document).ready(function() {    
    $('#menu').ptMenu({vertical:true});
    $('div.widget div.widget-content form#widget-search input.input_style_text').fields('Искать...');
    
    $('#wall #button a').live('click',ajaxwall);
    
    /*SLIDE SHOW HIDER*/
    var slide = $.cookie("slideshow");        
    if(slide==null){$.cookie("slideshow", true, {expires: 0,path: "/"});}    
    else if(slide=='false'){$('#gerb_line').show();$('#header').hide();}    
    $('.hideshow').click(function(){$('#gerb_line').toggle('slow');$('#header').toggle('slow');
    var bslide = $.cookie("slideshow"); if(bslide=='true')$.cookie("slideshow",false, {expires: 0,path: "/"});else $.cookie("slideshow",true,{expires: 0,path: "/"});});
});

function ajaxwallcomplete(data)
{       
        $('#wall #button').remove();
        $('#wall').append(data);        
}

function ajaxwall()
{
    $.get($(this).attr('href'),ajaxwallcomplete);
    return false;
}
