$(document).ready(function(){

    $("#topMenu P:last").css('display','block');

    $("#topMenu li").hover(
    function(){
        htmlText=$(this).children("a").html();

        htmlTextP=$(this).children("p").html();
        description=$(this).children("a").attr("title");

        $(this).children("a").prepend('<img src=http://my_web/img/icons/str22_anim.gif width=5 height=5 vspace=1 border=0 id=str />&nbsp;');
        $(this).children("a").stop().animate({
          opacity: 0.4,
          marginLeft: "10px"
        }, "fast");

        $("#topMenu P:last").empty();
        $("#topMenu P:last").append(htmlTextP);
        //$("#topMenu P:last").stop().hide().slideDown(200);
        $("#topMenu P:last").stop().css('margin-Left', "5in");
        $("#topMenu P:last").stop().animate({marginLeft: "15px",opacity: 0.4}, "fast", "swing", function(){$("#topMenu P:last").stop().animate({marginLeft: "15px",opacity: 1}, "fast");});
    },
    function(){
        $(this).children("a").html(htmlText);
        $(this).children("a").stop().animate({
          opacity: 1,
          marginLeft:"0px"
    }, "fast");
        $("#topMenu P:last").stop().animate({
          marginLeft: "15px",
          opacity: 1
        }, "fast");
	}
    );

    $("#feedback").click(function(){
        $(".cont").load("/lib/freedback.php");
    });
});
