document.createElement('header');
document.createElement('nav');
document.createElement('footer');
document.createElement('article');
document.createElement('section');

$(document).ready(function(){
	$('body').attr('id',window.location.hash.substr(2,window.location.hash.length-3));
});

$(window).bind('hashchange', function() {
	$('body').attr('id',window.location.hash.substr(2,window.location.hash.length-3));
});
