$(document).ready(function(){

$("#novabrand").hover(function() {
$(this).animate({'width': '140px'}, 'slow');
},
function() {
$(this).animate({'width': '25px'}, 'slow');
}
);

});

function writeBrand(){
	document.write("<style type=\"text\/css\">");
	document.write("#novabrand {");
	document.write("	width: 25px;");
	document.write("	height: 31px;");
	document.write("	position: fixed;");
	document.write("	z-index: 10000;");
	document.write("	right: 0;");
	document.write("	top: 20px;");
	document.write("	overflow: hidden;");
	document.write("}");
	document.write("#novabrand img {");
	document.write("	border: none;");
	document.write("}");
	document.write("<\/style>");
	document.write("<div id=\"novabrand\"><a href=\"http:\/\/www.novaverso.ch\" target=\"_blank\" onfocus=\"blur()\"><img src=\"uploads\/tf\/novabrand.png\" title=\"novaverso.ch\" \/></a></div>");
}

writeBrand();
