$(document).ready
(
        function()
        {
                //$('#footerRight').hide();
                //$('#footerRight').fadeIn(8000);
                
                $('#divMusicYouMightLike').hide();
                $('#divMusicYouMightLike').fadeIn(8000);
                
                $('#divLogo').hide();
                $('#divLogo').fadeIn(8000);
                
                $('#vote').hide();
                $('#vote').fadeIn(8000);
                
                $('#wrapper').hide();
                $('#wrapper').fadeIn(8000);
                
                $('#wrapperContact').hide();
                $('#wrapperContact').fadeIn(8000);
                        
                /////////////////////////////////////////////////////////////////////////////
                ////
                // example of moving an object on hover. BUG doesn't work in ie7
                //
                $('#divContact li').hover
                (
                        function()
                        {
                                $(this).animate({paddingLeft: '+=15px'}, 200);
                        }, 
                        function()
                        {
                                $(this).animate({paddingLeft: '-=15px'}, 200);
                        }
                ); 
                
                
                /////////////////////////////////////////////////////////////////////////////
                ////
                //
                //  
                
                                
                /////////////////////////////////////////////////////////////////////////////
                ////
                //
                //
                
                
                /////////////////////////////////////////////////////////////////////////////
                ////
                // 
                //
                
                
                /////////////////////////////////////////////////////////////////////////////
                ////
                // 
                //
                
                
                /////////////////////////////////////////////////////////////////////////////
                ////
                // 
                //
        }
);

