// ==UserScript==
// @name			Sellaband display tweaker
// @namespace	http://www.radiusrock.com/greasemonkey/
// @description	Script to widen the display on Sellaband.com
// @include		http://www.sellaband.com/*
// @include		http://sellaband.com/*
// ==/UserScript==
window.setTimeout(function() {
	for (i=0;i<10;i++) {
		try {
			if(document.getElementById('main').getElementsByTagName('div')[i].parentNode.id == 'main') 
				document.getElementById('main').getElementsByTagName('div')[i].style.width='700px';
			}
		catch(e) {}
	}
}, 100);

