/*
function bButton( btnName, imgNormal, imgPushed, urlDestination ) {
	document.write('<a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\'" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\'"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a>');
}
*/

var btnName;
var imgNormal;
var imgPushed;
var urlDestination;

document.write('<table class="top-nav-buttons" cellspacing="0" cellpadding="0" border="0">');
document.write('<tr>');

btnName="btnHomeAV";
imgNormal="buttons/btn-homeav.gif";
imgPushed="buttons/btn-homeav-pushed.gif";
urlDestination="homeav.php";
document.write('<td><a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\';playSound(1);" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\';stopSound(1);"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a></td>');

btnName="btnCommercial";
imgNormal="buttons/btn-commercial.gif";
imgPushed="buttons/btn-commercial-pushed.gif";
urlDestination="commercial.php";
document.write('<td><a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\';playSound(1);" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\';stopSound(1);"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a></td>');

btnName="btnRetail";
imgNormal="buttons/btn-retail.gif";
imgPushed="buttons/btn-retail-pushed.gif";
urlDestination="retail.php";
document.write('<td><a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\';playSound(1);" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\';stopSound(1);"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a></td>');

btnName="btnProduction";
imgNormal="buttons/btn-production.gif";
imgPushed="buttons/btn-production-pushed.gif";
urlDestination="production.php";
document.write('<td><a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\';playSound(1);" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\';stopSound(1);"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a></td>');

btnName="btnLessons";
imgNormal="buttons/btn-lessons.gif";
imgPushed="buttons/btn-lessons-pushed.gif";
urlDestination="lessons.php";
document.write('<td><a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\';playSound(1);" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\';stopSound(1);"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a></td>');

btnName="btnArtist";
imgNormal="buttons/btn-artist.gif";
imgPushed="buttons/btn-artist-pushed.gif";
urlDestination="artist.php";
document.write('<td><a href="'+urlDestination+'" onMouseOver="document.'+btnName+'.src=\''+imgPushed+'\';playSound(1);" onMouseOut="document.'+btnName+'.src=\''+imgNormal+'\';stopSound(1);"><img src="'+imgNormal+'" name="'+btnName+'" border="0"></a></td>');

document.write('</tr>');
document.write('</table>');
