/*
Dorset Music House
Written by Ian Collier, of lidd Consulting on behalf of Atonic Limited
This work copyright lidd Consulting/Atonic Limited
Please do not copy or modified this work without seeking the express permission of
the copyright holders beforehand.
Thank you

menu script
*/

// function to do top of each page
function dotop() {
  // heading
  document.write('<center><table class="heading">');
    document.write('<tr>');
      document.write('<td class="ends">');
        document.write('<img src="./monogram-tiny.gif" alt="" title="" />');
      document.write('</td>');
      document.write('<td class="middle">');
        document.write('<p style="text-align : center;">');
        document.write('<a href="index.htm" style="text-decoration : none;cursor : pointer;">');
        document.write('<img src="./Image94.gif" alt="Dorset Music House" title="Dorset Music House" style="border : 0px;" />');
        document.write('</a>');
        document.write('<br /><b><i><font face="Times New Roman" size="3" color="#FF0000">The Classical Music Agency</font></i></b>');
        document.write('</p>');
      document.write('</td>');
      document.write('<td class="ends">');
        document.write('<img src="./monogram-tiny.gif" alt="" title="" />');
      document.write('</td>');
    document.write('</tr>');
  document.write('</table></center>');

  // menu
  document.write('<div class="centered" style="width : 100%;background-color : #2164d9;">');
    document.write('<p style="text-align : center;">');
    // home page page
    document.write('<a href="index.htm" style="color : #ffffff;text-decoration : none;">Home page</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
    // new members page
    document.write('<a href="about.htm" style="color : #ffffff;text-decoration : none;">About</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
    // concerts page
    document.write('<a href="gifts.htm" style="color : #ffffff;text-decoration : none;">Gifts range</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
    // events page
    document.write('<a href="concerts.htm" style="color : #ffffff;text-decoration : none;">Concerts</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
	 // christmas page    
    document.write('<a href="christmas.htm" style="color : #ffffff;text-decoration : none;">Christmas</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
    // contact page 
//  document.write('<a href="contactus.htm" style="color : #ffffff;text-decoration : none;">Contact us</a>');
    document.write('</p>');
  document.write('</div>');
}