$(document).ready(function(){
//    jQuery('div.col3').css('width','100%');
    var html = jQuery('table.serv_items tbody').html();

    //это всё для того, что бы правильно подсветить tr'ку с ценами
    var bottomTr = jQuery('table.pad  tr.mainColourLight:last + tr');   
    if (bottomTr.children('td:eq(0)').html() && bottomTr.children('td:eq(0)').html() != '<div align="center"></div>' && jQuery('div.service_admin').html())
    {
	bottomTr.after(html);
	jQuery('tr#price_tr_1').addClass('mainColourLight');
    }
    else if (html)//jQuery('div.service_admin').html())
    {
	bottomTr.after(html);
	jQuery('tr#price_tr_2').addClass('mainColourLight');
    };
     jQuery('table.serv_items').remove();
    jQuery('div.service_admin').appendTo('td#button_cell');
    jQuery('div.service_custom_admin').appendTo('td#custom_button_cell');
    jQuery('a.thickbox').css('position','static');

    jQuery('table.pad tr').each(function(){
	jQuery(this).contents('td:eq(1)').css('width','240px');
    })
});

