//Учитесь писать друзья или обращайтесь в нашу студию www.quadronix.ru
function switcher() {
if($('#newsheader').text()=="Последние новости"){
$('#newsheader').empty();
$('#newsheader').append("Последние статьи");
$("#newsp").css("display","none"); 
$("#newsp").css("width","0px"); 
$("#newsp").css("height","0px"); 
$("#articlesp").animate({width: "200px",height: "120px"}, 700 );
}
else{
$('#newsheader').empty();
$('#newsheader').append("Последние новости");
$("#articlesp").css("display","none"); 
$("#articlesp").css("width","0px"); 
$("#articlesp").css("height","0px"); 
$("#newsp").animate({width: "200px",height: "120px"}, 700 );
}
return;

}
