// JavaScript Document
$(document).ready(function() {
	$("H1:has(span)").css('margin-bottom','0');
	
	$('p').each(function () {
		//$(this).html().replace('simpleview','simple<strong>view</strong>');
		
		//$(this).html().replace('simpleview','test');
	});
});
