/*
 * +-----------------------------------------------------------------------+
 * | Copyright (c) 2000-2011, ICSPlus; Gregor Livieratos                   |
 * | http://www.icsplus.de; +49 9131 127733                                |
 * | All rights reserved.                                                  |
 * |                                                                       |
 * | Redistribution and use in source and binary forms, with or without    |
 * | modification, are prohibited.                                         |
 * |                                                                       |
 * +-----------------------------------------------------------------------+
 * | Author: Gregor Livieratos <gli@icsplus.de>                            |
 * +-----------------------------------------------------------------------+
 *
 * Date: 14.12.11
 * Time: 21:58
 *
 * SVN revision information:
 * @version $:
 * @author  $:
 * @date    $:
 */

$(document).ready(function() {
    $('#leImpressum').hover(function() {
    	  $("#impressum").animate({opacity: "show"}, "slow");
    	}, function() {
    	  $("#impressum").animate({opacity: "hide"}, "fast");
    	});
});

