$(function(){
		$(".home").hover(function(){
			$(".edge").fadeIn();
		}, function() {
			$(".edge").stop().fadeOut();
		});
	});


