$(document).ready(function() {
$('.no_ticket_replies, .ticket_closed').removeClass('no_ticket_replies').addClass('alert').addClass('alert-danger');
$('[name="ticket_close"]').removeClass('btn-primary').addClass('btn-danger');
$('.ticket_reply_notice').addClass('btn').addClass('btn-primary');
$('.downloadAttachmentLink').addClass('label').addClass('label-default');
$('.divTableCell').each(function(){
$(this).replaceWith('
'+$(this).html()+' | ');
});
$('.divTableRow').each(function(){
$(this).replaceWith(''+$(this).html()+'
');
});
$('.divTableBody').each(function(){
$(this).replaceWith(''+$(this).html()+'');
});
$('.divTable').each(function(){
$(this).replaceWith('');
});
$('.attachment_header').each(function(){
$(this).replaceWith('');
});
$('.ticketErrorHolder').addClass('alert').addClass('alert-danger');
});
$(window).load(function(){
$('#errorHeader').replaceWith(function(){
return $("", {html: $(this).html()});
});
});