// JavaScript Document

$(document).ready(function(){
						   
	//prepend span tag
	$("h1").prepend("<span></span>");
								  
});
