// JavaScript Document
var imgPath = "/media/images/common/";
var galleryImgPath = "/media/images/gallery/";

function swapNav(elm){
	var obj = document.getElementById(elm);
	obj.src = imgPath+elm+"_over.jpg";
}

function swapNavBack(elm){
	var obj = document.getElementById(elm);
	obj.src = imgPath+elm+".jpg";
}

function setNav(elm){
	var obj = document.getElementById(elm);
	obj.src = imgPath+elm+"_over.jpg";
}

function swapGalleryImg(img,galleryDir){
	var obj = document.getElementById('swapper');
	obj.src = galleryImgPath+"/"+galleryDir+"/"+img+".jpg";
}

function InsertMovie(){
	  document.write('<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" width="320" height="240">\n');
	  document.write('<param name="AutoStart" VALUE="true" >\n');
	  document.write('<param name="url" value="/media/wmv/topsail_clip.wmv">\n');
	  document.write('<param name="ShowControls" value="0">\n');
	  document.write('<param name="ShowStatusBar" value="0">\n');
	  document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="/media/wmv/topsail_clip.wmv" name="MediaPlayer1" width="320" height="240" autostart="0" showcontrols="1" ShowStatusBar="1">\n');
	  document.write('</embed>\n');
	  document.write('</object>\n');
}	
	
function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=340,left = 440,top = 312');");
}
	