            $(document).ready(function(){
                $("#newslink").toggle( function(){
                        $("#newslink").animate({"top": "121px"}, "slow");
                        $("#newses").animate({"height": "290px", "top": "-281px"}, "slow");
                        //$("#newses").animate({"height": "310px"}, "slow");
                        $("#newcontain").animate({"height": "270px", 'top': '-280px'}, "slow");
                }, function(){
                        $("#newslink").animate({"top": "411px"}, 'slow');
                        $("#newses").animate({"height": "0px", "top": "8px"}, 'slow');
                        $("#newcontain").animate({"height": "0px", "top": "0px"}, 'slow');
                });
            });


var currentSortMinus = 'arquivo5';
var currentSortPlus = 'arquivo2';
function changeContent(type){    
	
	if(type=='minus'){
		destino = currentSortMinus;
	}else if (type=='plus'){
		destino = currentSortPlus;
	}else{
		destino = type;
	}
	
	$.ajax({
        url: "contentManager.php",
        type: "POST",
        data: 'sort='+destino,
        success: function(data){            
			if (data != ''){
                var res = data.split('|');                
                currentSortMinus = res[2];
				currentSortPlus = res[1];
                var h = parseInt($('#maindescription').css('height'));
                $('#descinner').animate({"top":"-=350"}, 'slow', function() {
                    
                    $('#descinner').html("<font color = '#FFFFFF'>"+res[0]+"</font>");
                    $('#descinner').animate({"top":"+=350"}, 'slow');
                });
            }
        },
        async: false
    });
}

