﻿/*
Author: Gavrilescu
Update: 2010/01/06
Author URI: http://www.gavrilescu.com/
*/	$(document).ready(function(){	
		$("h2:empty").remove();
		$("h4:empty").remove();
		$("strong:empty").remove();
	});
	

$('h2')
    .filter(function() {
        return $.trim($(this).text()) === ''
    })
    .remove()
$("h2:empty").remove();

