// JavaScript Document

function swapImage(m,img1)
{
	document.getElementById(m).src="wp-content/themes/cipl/images/nav/"+img1;
	
}
function swapNone(m,img1)
{
document.getElementById(m).src="wp-content/themes/cipl/images/nav/"+img1;
}

function HideDIV(d) { document.getElementById(d).style.display = "none"; }
function DisplayDIV(d) { document.getElementById(d).style.display = "block"; }

