			var imageHome = new Image();
			imageHome.src = "images/nav_main_on.gif";
			imageHome.src = "images/nav_gallery_on.gif";
			imageHome.src = "images/nav_comic_on.gif";
			imageHome.src = "images/nav_stuff_on.png";
			imageHome.src = "images/nav_contact_on.png";
			imageHome.src = "images/nav_files_on.png";

			function rollOver(picName, picture) {
				picName = document.getElementById(picName);
				picName.src = picture;
			}

			function loadPage(pageName) {
				document.location = pageName;
			}

			function findPos(obj) {
				var curleft = curtop = 0;
				if (obj.offsetParent) {
					curleft = obj.offsetLeft
					curtop = obj.offsetTop
					while (obj = obj.offsetParent) {
						curleft += obj.offsetLeft
						curtop += obj.offsetTop
					}
				}
				return [curleft,curtop];
			}

			function dragger() {
				this.o = null;
				this.startX = 0;
				this.startY = 0;
				this.clickX = 0;
				this.clickY = 0;
				this.setClick = 0;
			}

			dragger.prototype = {
				attach: function(o) {
					this.o = o;

					this.o.style.zIndex++;

					this.startX = parseInt(this.o.style.left, 10);
					this.startY = parseInt(this.o.style.top, 10);

					if (isNaN(this.startX) || isNaN(this.startY)) {
						var pos = findPos(this.o);
						this.startX = pos[0];
						this.startY = pos[1];
					}

					var me = this;
					document.onmousemove = function(e) { me.drag(e); };
					document.onmouseup = function() { me.detach(); };
				},
				detach: function() {
					this.o.style.zIndex--;

					document.onmousemove = null;
					document.onmouseup = null;
					this.o = null;
				},
				drag: function(e) {
					var x = 0;
					var y = 0;

					if (e) {
						e.preventDefault();

						x = e.clientX + window.pageXOffset;
						y = e.clientY + window.pageYOffset;
					} else {
						window.event.cancelBubble = true;
						window.event.returnValue = false;

						x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
						y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
					}

					if (!this.setClick) {
						this.clickX = x;
						this.clickY = y;
						this.setClick = 1;
					}

					this.o.style.left = (this.startX + x - this.clickX) + "px";
					this.o.style.top  = (this.startY + y - this.clickY) + "px";
				}
			}

			function resizer() {
				this.o = null;
				this.startX = 0;
				this.startY = 0;
			}

			resizer.prototype = {
				attach: function(o) {
					this.o = o;

					this.o.style.zIndex++;

					var pos = findPos(this.o.parentNode.parentNode);
					this.startX = pos[0];
					this.startY = pos[1];

					var me = this;
					document.onmousemove = function(e) { me.drag(e); };
					document.onmouseup = function() { me.detach(); };
				},
				detach: function() {
					this.o.style.zIndex--;

					document.onmousemove = null;
					document.onmouseup = null;
					this.o = null;
				},
				drag: function(e) {
					var x = 0;
					var y = 0;

					if (e) {
						e.preventDefault();

						x = e.clientX + window.pageXOffset;
						y = e.clientY + window.pageYOffset;
					} else {
						window.event.cancelBubble = true;
						window.event.returnValue = false;

						x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
						y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
					}

					this.o.parentNode.parentNode.style.width = Math.max(570,x - this.startX) + "px";
					this.o.parentNode.parentNode.style.height = Math.max(140,y - this.startY) + "px";
					document.getElementById("newsBox").style.width = parseInt(this.o.parentNode.parentNode.style.width) - 85 + "px";
					document.getElementById("newsBox").parentNode.style.height = parseInt(this.o.parentNode.parentNode.style.height) - 70 + "px";
				}
			}

			document.onmousedown = engage;

			function engage(e) {
				if (e) {
					var o = e.target;
				} else {
					var o = window.event.srcElement;
				}

				if (o.parentNode.className == "resizeBox") {
					var resizeObj = new resizer();
					resizeObj.attach(o.parentNode);

					if (e) {
						e.preventDefault();
					} else {
						window.event.cancelBubble = true;
						window.event.returnValue = false;
					}
				} else {
					o = doSomething(o, "dragBox", 4);

					if (o.className == "dragBox") {
						var dragObj = new dragger();
						dragObj.attach(o);

						if (e) {
							e.preventDefault();
						} else {
							window.event.cancelBubble = true;
							window.event.returnValue = false;
						}
					}
				}
			}

			function isNull(val){return(val==null);}

			function doSomething(o,b,steps) {
				for (var i=0; i<steps; i++) {
					if (o.className == b) {
						return o;
					} else {
						if (typeof o.parentNode == "undefined" || isNull(o.parentNode) || o.name == "override") {
							return o;
						} else {
							o = o.parentNode;
						}
					}
				}

				return o;
			}

			function closeMe(oName) {
				document.getElementById(oName).parentNode.removeChild(document.getElementById(oName));
			}

	window.onload=function(){
		var o = document.getElementById('divNews');
		var pos = findPos(o);
		o.className = "dragBox";
		o.style.left = pos[0] + "px";
		o.style.top= pos[1] + "px";
		document.getElementById('imgInteractive').src = "images/news_top_right_on.png";
	}