try {
    var thisNode = null;
    var imgSrc=null;
    var img=null;

    for (var i=0; i < document.images.length; i++) { 
  		if (document.images[i].parentNode.id.indexOf('content') != -1 ) { 
  			thisNode = document.images[i].parentNode;

			imgSrc=document.images[i].src;
			img=document.images[i];
			break;
  		} 
    };        
 
    if (imgSrc != null) {  
    		

	    var mobileLink = '<a id="dropLink" style="height:30px;" ';
	    
		    mobileLink+='href="#" onclick="javascript:window.open(\'http://suite.dropmobile.com/web2mobile_featured.php?client=2agenten&id='+img.id+'\', \'popup\', \'toolbar=0, width=450, height=391,scrollbars=yes, status=0, toolbar=0\');return false; " target="_blank">';
//	    	mobileLink+='href="#" onclick="javascript:window.open(\'http://suite.dropmobile.com/web2mobile_featured.php?client=2agenten&url='+imgSrc+'\', \'popup\', \'toolbar=0, width=450, height=391,scrollbars=yes, status=0, toolbar=0\');return false; " target="_blank">';
//  	    mobileLink+='href="#" onclick="javascript:window.open(\'http://suite.dropmobile.com/web2mobile_featured.php?client=2agenten&url='+imgSrc+'\', \'popup\', \'toolbar=0, width=450, height=391,scrollbars=yes, status=0, toolbar=0\');return false; " target="_blank">';
//	        mobileLink += '<img width="16px" src="http://www.dropmobile.com/images/favicon.ico" style="float: right; padding-top: 5px;">
		mobileLink +='&nbsp;</a>';
	    
	    
		thisNode=document.getElementById("menu-aux");
		for(var i=0; i<thisNode.childNodes.length; i++){

			if(thisNode.childNodes[i].tagName=="UL"){
				thisNode=thisNode.childNodes[i];
				break;
			}
		}

		thisNode.innerHTML = '<li>' + mobileLink + '</li>' + thisNode.innerHTML;
		}
} catch (e) {
 alert(e); 
}
