// JavaScript Document

function MainMenuRoll(subpage, status)
{
	button = document.getElementById("SubPage_" + subpage);
	button.src = "images/ogrzewanie/up-menu-" + subpage + "_" + status + ".jpg";
}


function SeeAlsoRoll(status)
{
	button = document.getElementById("Seealso");
	button.src = "images/ogrzewanie/klimatyzacja-" + status + ".jpg";
}


function SubProduct(ID, state)
{
	button = document.getElementById("SubProduct_" + ID);
	SubInfo = document.getElementById("SubInfo_" + ID);
	
	if (state == "over")
	{
		button.style.backgroundColor='#e0e0e0';
		//SubInfo.style.display = "block";
	}
	
	if (state == "out")
	{
		button.style.backgroundColor='';
		//SubInfo.style.display = "none";
	}
	
}

