//j=Math.round(3-(Math.random()*2))
//alert(j)
//document.body.style.backgroundImage='url(images/'+j+'.jpg)';

<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Sorry, This function has been disabled for the PAPG website";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 

function show_hide(nodel) {

		//alert(document.getElementById(nodel+'_img').src)

		if(document.getElementById(nodel+'_img').src.indexOf('images/plus.gif')>0) {
			$('#'+nodel+'_bracket').slideDown();
			document.getElementById(nodel+'_img').src='images/minus.gif';
		}
		else if(document.getElementById(nodel+'_img').src.indexOf('images/minus.gif')>0)  {
		
			$('#'+nodel+'_bracket').slideUp();
			document.getElementById(nodel+'_img').src='images/plus.gif';
		
		
		}
	

}



function tim(){


var dt=new Date();
am_pm=(dt.getHours()>=12)?"PM":"AM";
hr=(dt.getHours()>12)?(dt.getHours()-12):dt.getHours();
hr=(hr==0)?12:hr;
mins=dt.getMinutes();
mins=(mins<10)?'0'+mins:mins;
$('#ttm').html(hr+':'+mins+' '+am_pm);
setTimeout('tim()',1000);


}

tim();


function resto(){ 

	var jimg1=new Image();
	var jimg2=new Image();
	var jimg3=new Image();

		jimg1.src='images/join.gif';
		jimg2.src='images/join2.gif';
		jimg3.src='images/join3.gif';

	document.getElementById('jimg').src=jimg2.src;


 }

function swaps(){ 

	var jimg2=new Image();
	jimg2.src='../images/so2.gif';
	document.getElementById('simg2').src=jimg2.src;
	//alert(jimg2.src)


 }
function si(){ 

	var jimg2=new Image();
	jimg2.src='../images/si2.gif';
	document.getElementById('simg').src=jimg2.src;
	//alert(jimg2.src)


 }

function imposeMaxLength(Object, MaxLen)
{
  return (Object.value.length <= MaxLen);
}
