// ==UserScript==
// @name          Boliga Estate-title in Listing
// @namespace     http://mijav.dk/boliga/
// @description   Prints the contents of the Title tag into the td. below the address link
// @include       http://boliga.dk/search.aspx?*
// @include       http://www.boliga.dk/search.aspx?*
// ==/UserScript==


var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);

function letsJQuery() {
	// * div#content > table > tbody > tr td:first
	$(document).find("div#content div div table tr").each(function() { this.cells[0].innerHTML += "<div>"+$(this.cells[0]).find("a").attr("title")+"</div>";});
	
}

// Check if jQuery's loaded
function GM_wait() {
	if(typeof unsafeWindow.jQuery == 'undefined') {
		window.setTimeout(GM_wait,100);
	} else {
		$ = unsafeWindow.jQuery; letsJQuery();
	}
}
GM_wait();


