// JavaScript Document Handling Item Navigation

function cat_mouseover(cat_link)
{
	cat_link.className = "cat_link_hover";
}

function cat_mouseout(cat_link)
{
	cat_link.className = "cat_link";
}

function cat_activate(selected_cat)
{
	location.href = "./produkter.php?selectcat=" + selected_cat;
}

//function that displays the image in a bigger version when the mouse moves across the image
function mouseOverImage(image)
{
	//Background properties
	var il = document.getElementById("image_enlarger");
	il.className = "image_enlarger";	
	il.src = image;
	il.style.top = event.clientY;
	il.style.left = event.clientX+20;
}

function mouseOutImage()
{
	var il = document.getElementById("image_enlarger");
	il.className = "invisible";
}

function showLargerImage(image)
{
	var ShowImageWindow = window.open(image,'pageeditor','scrollbars=no,resizable=no,width=700,height=700', true);
	ShowImageWindow.focus();
}
