function moveObjTo(objectID,x,y) 
{
	$(objectID).style.left = x; 
	$(objectID).style.top = y;
}

function posLeft() 
{
 	return typeof window.pageXOffset != 'undefined' ? window.pageXOffset:document.documentElement.scrollLeft? document.documentElement.scrollLeft:document.body.scrollLeft? document.body.scrollLeft:0;
}
function posTop() 
{
 	return typeof window.pageYOffset != 'undefined' ? window.pageYOffset:document.documentElement.scrollTop? document.documentElement.scrollTop: document.body.scrollTop?document.body.scrollTop:0;
}

			
function hoverBgImage(obj, img, color)
{
 	document.getElementById(obj).style.background = "url("+img+") "+color+" repeat-x";
}

function hoverImage(obj, img)
{
 	document.getElementById(obj).src = "Bilder/buttons/"+img;
}
