/**
 * 
 * @author Marcin Pietrzak <marcin.pietrzak@iworks.pl>
 * 
 * @copyrights (c) 2010 iWorks Marcin Pietrzak
 * 
 * $Id: common.js 7384 2009-05-11 22:23:30Z illi $
 * $HeadURL: http://svn.iworks.pl/svn/clients/illi/sites/informax.pl/trunk/www/konsola2/usr/scripts/common.js $
 * 
 */
$(document).ready(function(){
    $("#menu li").hover(
    function(){
        $(this).addClass("on");
        $(this).find("div").animate({opacity: "show"}, "slow" );
    },
    function(){
        $(this).find("div").animate({opacity: "hide"}, "slow", "", function(){$(this).parent().removeClass("on");});
    });
});


function clearValue(id, txt){
	document.getElementById(id).value='';
}