// ==/UserScript==
// @name		Only Image Link 
// @author		POWER.LA  - ISSO SIM E PODER ! - http://www.orkut.com/Profile.aspx?uid=14757431368851775288
// @community		http://www.orkut.com/Community.aspx?cmm=25443115
// @description		In the searches for images in the GOOGLE, it modifies link only showing the image (Nas buscas por imagens no GOOGLE, altera o link exibindo somente a imagem)
// @include		http://images.google.*/*
// @include		*.google.*/*
// @LAST UPDATE	  	16/05/2007
// ==/UserScript==

var link;

var links = document.getElementsByTagName("a"); 
for(i=0; i < links.length; i++) {
        var href = new String( links[i].getAttribute("href") );
	var start = href.indexOf('imgurl=');
	var end = href.indexOf('&imgrefurl=');
        if( start != -1 && end != -1) {
              links[i].setAttribute("href",href.substring(start+7,end));
        }
}
