function createFooter() {
	document.write('Copyright &copy;2010 Pecca Leather. All rights reserved.');
}

jQuery(function(){	   
	jQuery("#logo-home")
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			jQuery(this).stop().animate({backgroundPosition:"(-104px 0)"}, {duration:400})
		})
		.mouseout(function(){
			jQuery(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:400})
		})		
	});
