﻿$(document).ready(function() {
    $('.entrycontent table').attr('align', 'center');
    if ($('.entryimage').attr('class')) {
        $('.entrycontent').css({  'margin': '0 auto', 'line-height': '120%' });
        if (!$('.entrycontent_wide').attr('class')) {
            $('.entrycontent').css({ 'width': '500px'  });
        }  
        entrycontentstrongb('strong');
        entrycontentstrongb('b');
    }
    if ($('#imgMain').attr('id')) {
        $('#imgMain').addClass('large');
    } else {
        $('.entryimage img').addClass('large');
    }

    $('.large').click(function() {
        window.open($(this).attr('src').replace('/image/med_', '/image/lg_'));
    });
});

function entrycontentstrongb(s) {

    $('.entrycontent '+s).each(function(i) {
    var text = $.trim($('.entrycontent ' + s).eq(i).text());
        if ((' 产品描述 产品特点 技术参数 产品简介 ').indexOf(' ' + text + ' ') != -1) {
            $('.entrycontent ' + s).eq(i).addClass('strongheader');

        }
    });
}