$(document).ready(function (){
	
    //$("select#archiveselect").selectmenu({style:'dropdown',heigth:50,width:256});
		//$("select#categoryselect").selectmenu({style:'dropdown',heigth:50,width:256});
	
    if(typeof window.loadComments == 'function') {
	   loadComments();
    }
    
    var most_commented=2, most_viewed=2;
    jQuery('.vedi_tutti').click(function(){
        var pg, action;
        if(jQuery(this).attr('id')=='most_commented'){
            pg=most_commented;
            action='most_commented'; 
        }else{
            pg=most_viewed;
            action='most_viewed';
        }
        var item = jQuery(this);
        var list=item.prev('ol');
        jQuery.ajax({
            url:admin_ajax,
            type:'GET',
            data:'action=data_load&'+action+'=' + pg,
            success:function(data){
                var old_ct=list.children('li').length;
                list.append(data);
                if(data==''){item.text('non ci sono altri post');}
                if(item.attr('id')=='most_commented'){
                    most_commented++;
                }else{
                    most_viewed++;
                }                
                
                list.children('li').each(function(){
                    jQuery(this).find('.num').html('<span>'+parseInt(list.children('li').index(jQuery(this))+1)+'</span>');
                });
            }
        });
        return false;
    });    
});

