
			function image_open(link, width, height){ 
				var imageWindow = window.open(link, 1337,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height); 
			}
		
			menu1 = new Image();
			menu1.src = "gfx/news_grey.jpg";
			menu2 = new Image();
			menu2.src = "gfx/gallery_grey.jpg";
			menu3 = new Image();
			menu3.src = "gfx/tutorials_grey.jpg";
			menu4 = new Image();
			menu4.src = "gfx/biography_grey.jpg";
			menu5 = new Image();
			menu5.src = "gfx/links_grey.jpg";
			menu6 = new Image();
			menu6.src = "gfx/mpcd_grey.jpg";
			menu7 = new Image();
			menu7.src = "gfx/shop_grey.jpg";
			menu8 = new Image();
			menu8.src = "gfx/forum_grey.jpg";
			menu9 = new Image();
			menu9.src = "gfx/ebay_grey.jpg";
			menu10 = new Image();
			menu10.src = "gfx/old.jpg";
			minibanner = new Image();
			minibanner.src = "gfx/mini_headline_grey.jpg";
			gallerybanner = new Image();
			gallerybanner.src = "gfx/headlines/gallery_grey.jpg";
			
			juststuff = new Image();
			juststuff.src = "gfx/juststuff_grey.jpg";
			coolstuff = new Image();
			coolstuff.src = "gfx/coolstuff_grey.jpg";
			ownstuff = new Image();
			ownstuff.src = "gfx/coolstuff_grey.jpg";

			function toggle(group) {
				if (document.getElementById(group + 'big').style.visibility == 'hidden') {
					document.getElementById(group + 'big').style.visibility = 'visible';
					document.getElementById(group + 'big').style.display = 'block';
					document.getElementById(group + 'small').style.visibility = 'hidden';
					document.getElementById(group + 'small').style.display = 'none';
				} else {
					document.getElementById(group + 'big').style.visibility = 'hidden';
					document.getElementById(group + 'big').style.display = 'none';
					document.getElementById(group + 'small').style.visibility = 'visible';
					document.getElementById(group + 'small').style.display = 'block';
				}
			}
			
			function menutoggle(section) {
				sections=new Array( );
				sections[0]="news";
				sections[1]="gallery";
				sections[2]="tutorials";
				sections[3]="bio";
				sections[4]="links";
				sections[5]="mpcd";
				sections[6]="shop";
				sections[7]="ebay";
				
				if ((document.getElementById(section + 'linktxt').style.visibility == 'hidden') || (document.getElementById(section + 'linktxt').style.visibility == '')) {
					for (j = 0; j < sections.length; j++) {
						if (section != sections[j]) {
							document.getElementById(sections[j] + 'link').style.visibility = 'hidden';
							document.getElementById(sections[j] + 'link').style.display = 'none';
							document.getElementById(sections[j] + 'linktxt').style.visibility = 'hidden';
							document.getElementById(sections[j] + 'linktxt').style.display = 'none';
						}
					}
					document.getElementById(section + 'linktxt').style.visibility = 'visible';
					document.getElementById(section + 'linktxt').style.display = 'inline';
				} else {
					for (j = 0; j < sections.length; j++) {
						document.getElementById(sections[j] + 'link').style.visibility = 'visible';
						document.getElementById(sections[j] + 'link').style.display = 'inline';
						document.getElementById(sections[j] + 'linktxt').style.visibility = 'hidden';
						document.getElementById(sections[j] + 'linktxt').style.display = 'none';
					}
				}
			}
	
		