jQuery(function(){

    var heightText = jQuery('#newsBox .inner').height();
    var opened = true;
    var inAnimation=false;

    jQuery('.roundedCornerNewsBox').css('top',heightText+22);
    jQuery('#newsTab').click(function() {

    if (inAnimation){
        return;
     }
        inAnimation = true;
        if (opened==true ){
            jQuery('#newsBox .inner').animate({left: '-215' }, function(){inAnimation=false});
            jQuery('.roundedCornerNewsBox').animate({left: '-215' }, function(){inAnimation=false});
            opened = false;
        } else if (opened==false) {
            jQuery('#newsBox .inner').animate({left: '0' }, function(){inAnimation=false} );
            jQuery('.roundedCornerNewsBox').animate({left: '0'}, function(){inAnimation=false});
            opened = true;
        }
     });

});
