$(document).ready(function()
{

	// try and clean up the mess that is the left column
    $('.left-col a').each(function(i){

		if (isEmpty($(this).html())){
			$(this).remove();
		}

	});

	$('.left-col p').each(function(i){

	    $(this).children('a').each(function(i){

    		if (isEmpty($(this).html())){
    			$(this).remove();
    		}

		});

	    $(this).children('h2').each(function(i){

    		$(this).parent('p').replaceWith($(this).html());

		});

		if (isEmpty($(this).html())){
			$(this).remove();
		}

	});

	// try and clean up the mess that is contacts
    $('table.contacts td').children('p').each(function(i){

		$(this).replaceWith($(this).html());

	});
    $('table.contacts td, table.contacts strong').children('br').each(function(i){

		$(this).remove();

	});

});

function isEmpty(inner_html){
	var inner_html_trimmed = inner_html.replace(/^\s+|\s+$/g, '');
	if (inner_html_trimmed == ''){
		return true;
	}
	return false;
}