﻿
        $(document).ready(function() {
            $(".menu").hover(function() {
                $(this).fadeTo("fast",0.4);
                },
                function() {
                $(this).fadeTo("fast",1);
                }
                );
            });

            $(document).ready(function() {
                $(".menu2").hover(function() {
                    $(this).fadeTo("fast", 0.7);
                },
                function() {
                    $(this).fadeTo("fast", 1);
                }
                );
            });
            $(document).ready(function() {
                $(".rollover").hover(function() {
                    $(this).fadeTo("fast", 0.7);
                },
                function() {
                    $(this).fadeTo("fast", 1);
                }
                );
            });        