/* ***********************************************************************************************************
* www.THEBIGBAND.co.uk - Site Design by George Frost                                                         *
**************************************************************************************************************
* Location:       /scripts/togglemenu.js                                                                     *
* Last Changed:   07/05/10  by  George Frost                                                                 *
*                 Copyright 2010 by George Frost                                                             *
**************************************************************************************************************
* Notes:                                                                                                     *
* -                                                                                                          *
* -                                                                                                          *
* -                                                                                                          *
* -                                                                                                          *
* -                                                                                                          *
*********************************************************************************************************** */


function toggleMenu(id) {
	menu = document.getElementById("menu"+id).style;
	img = document.getElementById("menuimg"+id);
	if (menu.display == "block") {
		menu.display = "none";
		img.src = "img/menuopen.gif";
	} else {
		menu.display = "block";
		img.src = "img/menuclose.gif";
	}
}