﻿function navOn(temp, section) {	
    $(temp).find("ul").show();
	$(temp).find("img").attr('src', '/images/nav/' + section + '-on.jpg');
}

//displays the first ul in the container when called in rollover script init()
function navOff(temp, section) {
    $(temp).find("ul").hide();
    $(temp).find("img").attr('src', '/images/nav/' + section + '.jpg');
}


function NewWindow(fname,pwidth, pheight)
{

var newWindow = "";
newWindow = window.open(fname,"blankwindow","scrollbars=no,top=25,resizable=no,width=700,height=400");
newWindow.focus();
}

