
function appendStyleElement () {
	if (document.createElement) {
		var styleElement = document.createElement( 'style' );
		if( styleElement ) {
			styleElement.type = 'text/css';
			var headElement = document.getElementsByTagName( 'head' )[0];
			headElement.appendChild( styleElement );
		}
	}
}

function appendStyleRule (ruleSet) {
	if (document.styleSheets) {
		if( document.styleSheets.length == 0 ) {
			appendStyleElement();
		}
		if( document.styleSheets.length > 0 ) {
			var styleSheet = null;
			for( var j = 0; j < document.styleSheets.length; j++ ) {			  
				var ds = document.styleSheets[ j ];
				if( ds.insertRule && ds.media.mediaText == 'screen' || ds.media.mediaText == '' ) {
					styleSheet = document.styleSheets[ j ];
					j = document.styleSheets.length + 1;
				}
			}
			if( styleSheet ) {
				styleSheet.insertRule( ruleSet, styleSheet.cssRules.length );
			} else {
				if ( document.styleSheets[ 0 ].addRule ) {
					var ruleSetPattern = /(.*)({([^}]*)})/;
					var match = ruleSetPattern.exec(ruleSet);
					if (match) {
						var selector = match[1];
						var declarations = match[3];
						document.styleSheets[document.styleSheets.length -1].addRule(selector, declarations);
					}
				}
			}
		}
	}
}

function wInit() {
	appendStyleRule( '#wheriz-widget-484 { border: 1px solid green; padding: .5em 1em .5em 1em; background-color: white }' );
	appendStyleRule( '#wheriz-widget-484 *{ margin: 0; padding: 0; font-family: tahoma, sans-serif; font-size: 10px }' );
	appendStyleRule( '#wheriz-widget-484 ul{ list-style-type: none; margin-left: 1em }' );
	appendStyleRule( '#wheriz-widget-484 p{ margin: .5em 0 }' );
	var e = document.getElementById( 'wheriz-widget-484' );
	if( !e ) return;
	e.innerHTML = '<a href="http://www.wheriz.es/" target="_blank"><img src="http://www.wheriz.es/images/minilogo.gif"  width="102" height="32" /></a><p>Plans of <a href="http://www.wheriz.es/user/484" target="_blank"><b>Kilian Jornet</b></a></p></ul><p>Forthcoming events:</p><ul><li><a href="http://www.wheriz.es/plan/10859" target="_blank"><b>Kilian\'s Quest Kilimanjaro</b></a> (in Barangata on the 17 Sep 2010)</li><li><a href="http://www.wheriz.es/plan/10206" target="_blank"><b>Cavalls del Vent</b></a> (in Bagà on the 02 Oct 2010)</li><li><a href="http://www.wheriz.es/plan/10207" target="_blank"><b>Diagonale des Fous</b></a> (in L\'Hermitage on the 22 Oct 2010)</li></ul><p><b><a href="http://www.wheriz.es/user/484" target="_blank">View Kilian Jornet\'s profile in wheriz</a> | <a href="http://www.wheriz.es/user/484/all" target="_blank">View all plans of Kilian Jornet</a></b></p>';
}

wInit();

