// ==UserScript==
// @name		iwiw image
// @description 	Iwiwen felhasznalok kepehez linket rendel
// @namespace		http://ajnasz.hu/blog/20060622/greasemonkey-iwiw-pictures
// @include		http://www.iwiw.net/*
// @include		http://www.iwiw.hu/*
// @include		http://iwiw.net/*
// @include		http://iwiw.hu/*
// ==/UserScript==


center = document.getElementById('center');
ps = center.getElementsByTagName('p');
imgPs = Array();
for(i=0; i<ps.length; i++) {
	if(ps[i].className == "image") {
		imgPs.push(ps[i]);
	}
}

for(i=0; i<imgPs.length; i++) {
	var index = imgPs[i].firstChild.getAttribute('onclick').indexOf(',');
	var index2 = imgPs[i].firstChild.getAttribute('onclick').indexOf("'");
	imgPs[i].firstChild.href = imgPs[i].firstChild.getAttribute('onclick').substring(index2+1,index-1);
	imgPs[i].firstChild.onclick = '';
}


