function sendJson(url, data){
$.post(url,data, function(result) {
if(r.status === 'error') {
alert(r.msg);
return;
}
//TODO check result
}, 'json');
}
$(document).ready(function(){
$('#feedback').hover(function(){
$('#feedback-logo').animate({width: "toggle"}, "slow");
});
});