/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

var url = document.location;
//  navitems first field specs 3 mouse states as: [navitem ('', 'mout'), navitem ('', 'mover'), navitem ('', 'mdown')] caption goes in ''
var MENU_ITEMS = [
	[[navitem ('home', 'mout'), navitem ('home', 'mover'), navitem ('home', 'mdown')],  'index.php',,
			[infobubl('<span class="infobublh4">Pix Records home page</span><br>Begin your journey to a superlative recording experience featuring your peak performance.')]
	],	
	[[navitem ('about', 'mout'), navitem ('about', 'mover'), navitem ('about', 'mdown')],  'about_pix.php' ,,
		[infobubl('<span class="infobublh4">Background information</span><br>Pix and his passion - faithfully recording your peak performance with the finest equipment passion can provide')]
	],
	[[navitem ('services', 'mout'), navitem ('services', 'mover'), navitem ('services', 'mdown')],  'services.php' ,,
		[infobubl('<span class="infobublh4">Pix Records Services</span><br>Some of the services we provide - &quot;some&quot; because we are always open to trying something new and ground-breaking.')]
	],
	[[navitem ('rates', 'mout'), navitem ('rates', 'mover'), navitem ('rates', 'mdown')],  'rates.php',,
		[infobubl('<span class="infobublh4">Studio Rates</span><br>These will vary according to your requirements and what you want to achieve. However you will find a guide to our costs on this page.')]
	],
	[[navitem ('enquiries', 'mout'), navitem ('enquiries', 'mover'), navitem ('enquiries', 'mdown')],  'enquiry.php',,
		[infobubl('<span class="infobublh4">Enquiries</span><br>Please use our enquiry form to make an enquiry or discuss your requirements - we much prefer email contacts as the phone is often silenced or disconnected during recording sessions which can make that a frustrating means of communication intiially.')]
	],
	[[navitem ('resources', 'mout'), navitem ('resources', 'mover'), navitem ('resources', 'mdown')],  'resources.php',,
		[infobubl('<span class="infobublh4">Resources</span><br>we are pleased to share these resources available on the net with our site visitors.<br><br>This growing list covers many aspects of audio creation and capture but one feature common to all is the passion for quality without compromise.')]
	],
	[[navitem ('directions', 'mout'), navitem ('directions', 'mover'), navitem ('directions', 'mdown')],  'directions.php',,
		[infobubl('<span class="infobublh4">How to find Pix Records</span><br>A versatile map to our Recording Studio  including the option to print out precise directions using Google maps')]
	],
	[[navitem ('clients', 'mout'), navitem ('clients', 'mover'), navitem ('clients', 'mdown')],  'clients.php',,
		[infobubl('<span class="infobublh4">Pix&acute;s Clients</span><br>Some of the musicians and recording artists  who have discovered the magical results they can achieve at Pix records.')]
	],
//	[[navitem ('feedback', 'mout'), navitem ('feedback', 'mover'), navitem ('feedback', 'mdown')],  'feedback.php',,
//		[infobubl('<span class="infobublh4">Artists\' feedback</span><br>What some of our recording artists and guests have said about their experience at Pix Records - these comments are typical of the feedback we continually receive.')]
//	],
  	[[navitem ('email&nbsp;friends', 'mout'), navitem ('email&nbsp;friends', 'mover'), navitem ('email&nbsp;friends', 'mdown')],  'drums-in-the-jungle.php?' + url, {'tw': '_blank'} , 
  			[infobubl('You can email friends and colleagues about this page. <br><br>A new window will open explaining how it works and asking for the information required to send the email. <br><br>We do not keep any record of the email addresses you use in any shape or form. <br><br>')]
  	]
];

function navitem ( text , state) {
	return '<table height=36 width=131 cellpadding=0 cellspacing=0 border="0"><tr><td><img src="img/navbutton' + state + '.gif"  width="30" height="30" ></td><td valign="middle">&nbsp;&nbsp;<span class="' + state + '">' +  text + '</span></td></tr></table>';
}
function infobubl (text) {
	return '<table height="10"width=220 cellpadding="5" cellspacing="0" border="2" bordercolor="#990033" bordercolordark="#660033" bordercolorlight="#cc0000"><tr><td width="216" class="infobubl">' + text + '</td></tr></table>';
}
