// ==UserScript==
// @name           GImageInfo
// @namespace      http://www.potatoeskillme.com/greasemonkey/
// @description    Displays the rollover data for all images without having to rollover each image
// @include http://images.google.com/images?*
// ==/UserScript==

window.addEventListener('load', function(){
	for(i=0; i < 22; i++){
		var el = document.getElementById("div_hidden"+i);
		var el2 = document.getElementById("div_image"+i);
		var el3 = document.getElementById("div_snippet"+i);
		if(el){
			el.style.border = 0;
			el.style.backgroundColor = '#FFFFFF';
			el.style.visibility = 'visible';
			el.style.width = '200px';
			el.removeAttribute('onmouseover');
			el.removeAttribute('onmouseout');
			el2.removeAttribute('onmouseover');
			el2.removeAttribute('onmouseout');
			el3.removeAttribute('onmouseover');
			el3.removeAttribute('onmouseout');
		}
	}
}, true);

window.addEventListener('resize', function(){
	for(i=0; i < 22; i++){
		var el = document.getElementById("div_hidden"+i);
		var el2 = document.getElementById("div_image"+i);
		var el3 = document.getElementById("div_snippet"+i);
		if(el){
			el.style.border = 0;
			el.style.backgroundColor = '#FFFFFF';
			el.style.visibility = 'visible';
			el.style.width = '200px';
			el.removeAttribute('onmouseover');
			el.removeAttribute('onmouseout');
			el2.removeAttribute('onmouseover');
			el2.removeAttribute('onmouseout');
			el3.removeAttribute('onmouseover');
			el3.removeAttribute('onmouseout');
		}
	}
}, true);