$(document).ready(function () {
        $("#header .a").hover(
        function() {
                $(this).animate({"opacity": "0"}, 100);
        },
        function() {
                $(this).animate({"opacity": "1"}, 100);
        });
        $(".box").hover(
        function() {
                $(this).children(".a").animate({"opacity": "0"}, 100);
        },
        function() {
                $(this).children(".a").animate({"opacity": "1"}, 100);
        });
        $('#header li a').sifr({
                font: 'js/meniu.swf',
                version: 3,
                color: 'ffffff',
                textAlign: 'center'
        });
  });
<!--END COLOR EFFECT-->
