$(document).ready(function(){
	$('h1').append('<div class="h1_logo"></div>');
	var home = $.Storage.get('home');
	if(!home) home = '/';
	$('a[href=/]').attr('href',home);
	$('.logo').click(function(){
		window.location = home;
	});
});
