// JavaScript Document

jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery('.rh_content .moduletable').addClass("rc_roundAll");
     //start for news and health
     jQuery('#news_tabs-1').addClass("highlight rc_roundTop");
     jQuery('#news_tabs-2').addClass("rc_roundTop");
     jQuery('.moduletable_healths').fadeIn();
     jQuery('.moduletable_news').fadeOut();
     
     jQuery('#news_tabs-1').mouseover(function() {
          jQuery('#news_tabs-2').removeClass("highlight");
          jQuery('#news_tabs-1').addClass("highlight");
          jQuery('.moduletable_news').fadeOut('fast');
          jQuery('.moduletable_healths').fadeIn();
    
    return false;
  });
  jQuery('#news_tabs-2').mouseover(function() {
    jQuery('#news_tabs-1').removeClass("highlight");
    jQuery('#news_tabs-2').addClass("highlight");
    jQuery('.moduletable_healths').fadeOut('fast');
    jQuery('.moduletable_news').fadeIn();
    return false;
  });
  
    
});
