$(document).ready(function() {
// drawFont functions
	//$('h1 a').drawFont();
	//$('#respond #comment-submit button').drawFont();
	//$('.site_title_text').drawFont();
	
// removes empty top box that floats where comments would be when empty.
	//if($('#sexycomments h3').length != 0){
//comments found
	//}else{
//no comments found
		//$('#sexycomments').css('display','none');
	//}
document.createElement("article"); 
document.createElement("footer"); 
document.createElement("header"); 
document.createElement("hgroup"); 
document.createElement("section"); 
document.createElement("nav"); 
document.createElement("datalist");
// removes empty gray box on previous pages of posts.
	if($('ul#user_message li p').length != 0){
//content found
	}else{
//no content found
		$('ul#user_message').css('display','none');
	}
});