$(document).ready(function(){
  
  var tabs = $('.tabs_container');
  for(i=0;i<tabs.length;i++)
    init_tab($(tabs[i]).attr('id'));
  
  elms = $('.news_title');
  for(i=0;i<elms.length;i++)
  {
    if ($(elms[i]).height() > 1)
    {
	  var m = "-"+$(elms[i]).height()-10+"px 0 0 0";
	  $(elms[i]).css({margin: m});
    }
  }

  $('.menu').bind("mouseover", function(e) {
    document.getElementById('active').id="active2";
  });
  
  $('.menu').bind("mouseout", function(e) {
    document.getElementById('active2').id="active";
  });
  
});

function init_tab(el) {
  $('#'+el+' ul').tabs({ fx: { opacity: 'toggle' } });
}
