p1	= new Image(95,29);
p1.src	= "http://testing.mhyde.com/img/foundation/button/products[over].png";
p2	= new Image(121,29);
p2.src	= "http://testing.mhyde.com/img/foundation/button/specialoffers[over].png";
p3	= new Image(79,29);
p3.src	= "http://testing.mhyde.com/img/foundation/button/forms[over].png";
p4	= new Image(132,29);
p4.src	= "http://testing.mhyde.com/img/foundation/button/contactus[over].png";
p5	= new Image(101,29);
p5.src	= "http://testing.mhyde.com/img/foundation/button/aboutus[over].png";
p6	= new Image(106,29);
p6.src	= "http://testing.mhyde.com/img/foundation/button/jobs[over].png";



function over(id, subid)
	{
	if(subid)
		{
		subid	= id+subid;
		}
	else
		{
		subid	= id;
		}
	document.getElementById(subid).src	= "/img/foundation/button/"+id+"[over].png";
	}

function out(id, subid)
	{
	if(subid)
		{
		subid	= id+subid;
		}
	else
		{
		subid	= id;
		}
	document.getElementById(subid).src	= "/img/foundation/button/"+id+"[neutral].png";
	}


function toggle(field)
	{
	var current		= document.getElementById(field).style.display;
	switch(current)
		{
		case "none": document.getElementById(field).style.display	= "";
		break;
		case "": document.getElementById(field).style.display	= "none";
		break;
		}
	}

function pop(url,height)
	{
	var newwindow	= window.open(url,'popup','height='+height+',width=450,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	}
