// This script will remove the extra <br />
// Which gets inserted by Operan 10.0+ below
// the HTML tag. A bug report has been submitted to Opera
// for this problem. Something in effects.js of scriptaculous
// causes this <br /> to be insterted on QuestionBin.com
if (Prototype.Browser.Opera == true) {
	// Fetch the first element, HTML
	var htmlTag = document.getElementsByTagName('html');
	
	// Fetch the first child of that element - the node name
	var child   = htmlTag[0].childNodes[0];
	
	// If the node is BR then Opera has inserted a <br />
	// tag below <html>. Set they style to none.
	// Code Provide by Amr Osama. 
	if (child.nodeName == 'BR') {
		child.setAttribute('style','display:none');
	}
}
		