$(window).load(function() {
    
	 
	
	 
	 $('footer a, .page-template article a').has('canvas,img').hover(
		function(){
			$('.mono',this).hide();
			$('.color',this).show();
		},
		function(){
			$('.mono',this).show();
			$('.color',this).hide();
		}
	);
	$('footer a, .page-template article a').has('img').each(function(i){
		$('img',this).clone().appendTo(this).addClass('color').hide();
		$('img',this).not('.color').desaturate().addClass('mono');
		$('.page-template article').each(function(){
			$('h1',this).detach().appendTo($('a',this));
		});
	});
});

