document.createElement("header");
document.createElement("nav");
document.createElement("footer");
document.createElement("article");
document.createElement("section");
document.createElement("aside");
document.createElement("hgroup");

//``````````````````````````````````````BUTTONS````````````````````````
function buttonFader() {
	$('.darkFader a').hover(function() {
		$(this).stop().animate({
			color: 'rgb(34,152,194)'
		}, 1);
	}, function() {
		$(this).stop().animate({
			color: 'rgb(59,57,50)'
		}, 700);
	});
	$('.darkFader a').click(function() {
		$(this).stop().animate({
			color: 'rgb(59,57,50)'
		});
	});
}



//``````````````````````````````````````START````````````````````````
$(document).ready(function() {
	buttonFader();
});
