
// 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.
// Additional scripts can be found at http://www.24fun.com
// info@24fun.com
// 03/09/2001

// IMPORTANT: 
// If you add this script to a script-library or script-archive 
// you have to add a link to http://www.24fun.com on the webpage 
// where this script will be running.

// CONFIGURATION:
// Go to www.24fun.com, open category 'utility' and download 
// the full-version of this script as ZIP-file with
// step-by-step instructions for non-programmers.

// rollover-color
var color_onmouseover="#FFFFFF"

// 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
	}
}

