// ==UserScript==
// @name wdc.com - Menu fix
// @author Tomcat76 
// @namespace http://userjs.org/ 
// @version 1.0
// @description  Fixes faulty menu system on the Western Digital
//			website.
// @ujs:category site: fixes
// @ujs:published 2005-08-24 21:04
// @ujs:modified 2005-09-19 09:19
// @ujs:documentation http://userjs.org/scripts/site/fixes/wdc-com-menufix 
// @ujs:download http://userjs.org/scripts/download/site/fixes/wdc-com-menufix.js 
// @include http://www.wdc.com/*
// @include http://wdc.com/*
// ==/UserScript==


/* 
 * This script is granted to the Public Domain.
 */

document.addEventListener('load',function(e){
	var imgs=document.getElementsByTagName('img');
	for(var i=0;i<imgs.length;++i){
		if(imgs[i].parentNode.className=='menuButton'){
			imgs[i].style.display='block';
		}
	}
},false);