$(document).ready(function(){
	$("#footer").hover(
		function(){$("#footer_des").show();$("#footer_copyright").hide()},
		function(){$("#footer_des").hide();$("#footer_copyright").show()}
	);
});
