var gRules = {
	'div.googleVideo': function(el) {
		var docId = el.className.replace(/.*gv/, '');
		var wi = el.style.width;
		var he = el.style.height;
		var html = '<object type="application/x-shockwave-flash" data="/wp-content/flvplayer.swf" style="width: ' + wi + '; height: ' + he + ';"><param name="movie" value="/wp-content/flvplayer.swf" /><param name="flashvars" value="path=' + docId + '" /></object>';
		el.innerHTML = html; // I hate IE - rotfl from Patrys :D
	}
};

Behaviour.register(gRules);
