// CREDITS:
// Rollovereffect for whole paragraphs and tables
// by Urs Dudli and Peter Gehrig 
// Copyright (c) 2001 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is. Distributed by http://www.hypergurl.com

// rollover-color
var color_onmouseover="FFFF00"

// do not edit the varibales below
var obj     
var color_onmouseout

if (document.all) {
    document.onmouseover=showmouseovercolor;
    document.onmouseout=showmouseoutcolor;
}

function showmouseovercolor() {
	obj=event.srcElement
    if (obj.tagName!='BODY') {
		color_onmouseout=obj.style.backgroundColor
		obj.style.backgroundColor=color_onmouseover
	}								
}

function showmouseoutcolor() {
	obj=event.srcElement
    if (obj.tagName!='BODY') {
		obj.style.backgroundColor=color_onmouseout
	}
}
