$(document).ready(function() {
    $('#gallery-text div').css('display', 'none');
    $('.gallery-navigation a').click(function() { return false; });
    $('.gallery-navigation a').hover(function() { $($(this).attr('href')).css('display', 'block'); },
         function() { $('#gallery-text div').css('display', 'none'); });
         
    $('body.products-and-services-default div#plant-content-offset table').css('display', 'none');
    $('body.products-and-services-default div#plant-content-offset table.first').css('display', 'block');
    
    //$('#left-side').append($('#body.products-and-services-default div#plant-content-offset h3'));
     if($('body').hasClass("products-and-services-default"))
    {
    
    var hh = $('body.products-and-services-default div#plant-content-offset h3').get();
    //alert(hh);
        $('#left-side').html(hh);
   }
    
    $('body.products-and-services-default div#plant-content-offset h3 a').click(function(){
        if($($(this).attr('href')).is(':visible'))
        {
            return false;
        }
        $('body.products-and-services-default div#plant-content-offset table').hide();
        $('body.products-and-services-default div#plant-content-offset a').removeClass('active');
        $($(this).attr('href')).show();
        $($(this).addClass('active'));
        
        return false;
    });

});