
    createNoteChildren=function(){

                showNote=function(){
                            // gets note element
                            var childrenNote=document.getElementById('childrenNote');
                            
                            // shows note element
                            childrenNote.style.visibility='visible';
                            
                }

                hideNote=function(){
                            // gets note1 element
                            var childrenNote=document.getElementById('childrenNote');
                           
                            // hides note1 element
                            childrenNote.style.visibility='hidden';
                            
                }
                var childrenlink=document.getElementById('childrenlink');
                var childrentext=document.getElementById('childrenNote');
               
                // shows note1 element when mouse is over
                childrenlink.onmouseover=showNote;
                childrentext.onmouseover=showNote;
               
                // hides note1 element when mouse is out 
                childrenlink.onmouseout=hideNote;
                childrentext.onmouseout=hideNote;
                
    }
   
   
   createNoteGuests=function(){

                showNote=function(){
                            // gets note element
                           
                            var guests=document.getElementById('guests');
                            // shows note element
                            
                            guests.style.visibility='visible';
                }

                hideNote=function(){
                            // gets note1 element
                           
                            var guests=document.getElementById('guests');
                            // hides note1 element
                           
                            guests.style.visibility='hidden';
                }
               
                var guestslink=document.getElementById('guestslink');
                var gueststext=document.getElementById('guests');
                // shows note1 element when mouse is over               
                guestslink.onmouseover=showNote;
                gueststext.onmouseover=showNote;
                // hides note1 element when mouse is out                 
                guestslink.onmouseout=hideNote;
                gueststext.onmouseout=hideNote;
    }
    
    
    showBdayCake=function(){

                showNote=function(){
                            // gets note element
                           
                            var bdaycake=document.getElementById('bdaycake');
                            // shows note element
                            
                            bdaycake.style.visibility='visible';
                }

                hideNote=function(){
                            // gets note1 element
                           
                            var bdaycake=document.getElementById('bdaycake');
                            // hides note1 element
                           
                            bdaycake.style.visibility='hidden';
                }
               
                var bdaycakelink=document.getElementById('bdaycakelink');
                var bdaycakeimg=document.getElementById('bdaycake');
                // shows note1 element when mouse is over               
                bdaycakelink.onmouseover=showNote;
                bdaycakeimg.onmouseover=showNote;
                // hides note1 element when mouse is out                 
                bdaycakelink.onmouseout=hideNote;
                bdaycakeimg.onmouseout=hideNote;
    }
    
    
showFavorBag=function(){

                showNote=function(){
                            // gets note element
                           
                            var favorbag=document.getElementById('favorbag');
                            // shows note element
                            
                            favorbag.style.visibility='visible';
                }

                hideNote=function(){
                            // gets note1 element
                           
                            var favorbag=document.getElementById('favorbag');
                            // hides note1 element
                           
                            favorbag.style.visibility='hidden';
                }
               
                var favorbaglink=document.getElementById('favorbaglink');
                var favorbagimg=document.getElementById('favorbag');
                // shows note1 element when mouse is over               
                favorbaglink.onmouseover=showNote;
                favorbagimg.onmouseover=showNote;
                // hides note1 element when mouse is out                 
                favorbaglink.onmouseout=hideNote;
                favorbagimg.onmouseout=hideNote;
    }
    
    
showWhiteCake=function(){

                showNote=function(){
                            // gets note element
                           
                            var whitecake=document.getElementById('whitecake');
                            // shows note element
                            
                            whitecake.style.visibility='visible';
                }

                hideNote=function(){
                            // gets note1 element
                           
                            var whitecake=document.getElementById('whitecake');
                            // hides note1 element
                           
                            whitecake.style.visibility='hidden';
                }
               
                var whitecakelink=document.getElementById('whitecakelink');
                var whitecakeimg=document.getElementById('whitecake');
                // shows note1 element when mouse is over               
                whitecakelink.onmouseover=showNote;
                whitecakeimg.onmouseover=showNote;
                // hides note1 element when mouse is out                 
                whitecakelink.onmouseout=hideNote;
                whitecakeimg.onmouseout=hideNote;
    }
    
 showChuckeCup=function(){

                showNote=function(){
                            // gets note element
                           
                            var chuckecup=document.getElementById('chuckecup');
                            // shows note element
                            
                            chuckecup.style.visibility='visible';
                }

                hideNote=function(){
                            // gets note1 element
                           
                            var chuckecup=document.getElementById('chuckecup');
                            // hides note1 element
                           
                            chuckecup.style.visibility='hidden';
                }
               
                var chuckecuplink=document.getElementById('chuckecuplink');
                var chuckecupimg=document.getElementById('chuckecup');
                // shows note1 element when mouse is over               
                chuckecuplink.onmouseover=showNote;
                chuckecupimg.onmouseover=showNote;
                // hides note1 element when mouse is out                 
                chuckecuplink.onmouseout=hideNote;
                chuckecupimg.onmouseout=hideNote;
    }
    
    
    
 
