/* author: ajpierre@cthp.org */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 12/4/2007 */


var pictures=new Array();
pictures[0]=new Array("acorn.jpg","community/community.html");
pictures[1]=new Array("altres.jpg","health_Services/behavioral/bhs.html");
pictures[2]=new Array("denim.jpg","health_Services/chs/chs.html");
pictures[3]=new Array("dwg.jpg","health_Services/hipaa/understanding.html");
pictures[4]=new Array("flushot.jpg","health_Services/medical/medical.html");
pictures[5]=new Array("fluspread.jpg","health_Services/medical/fluspread.html");
pictures[6]=new Array("hiring.jpg","human_Resources/employment.html");
pictures[7]=new Array("mc_lunch.jpg","health_Services/hipaa/disclose.html");
pictures[8]=new Array("newstaff.jpg","human_Resources/employment.html");
pictures[9]=new Array("services.jpg","corporate_Info/corpinfo.html");
pictures[10]=new Array("pasche.jpg","administration/admin.html");
pictures[11]=new Array("cthpI.jpg","index.html");




function rightSidebarPicture(){ 
    size= pictures.length;  
	pic=new Array();       
	pic[0]=Math.floor(Math.random(size)*size)
	pic[1]=this.pic[0];
	while(pic[1]==pic[0])
		pic[1]=Math.floor(Math.random(size)*size)
	return pic;
}	

function rightSidebar(file){
    selected=rightSidebarPicture();
	
	 if(file=="top-level")
		directory="./";
	else if(file=="second-level")
		directory="../";
	else if(file=="third-level")
		directory="../../";
		
	document.write('<table class="sideBarRight"><tr><td align="center" >');
	document.write('<table class="menu">');
		document.write('<tr style="height:60px">');
			document.write('<td class="menuA" align="center"><b>Clinic News and Events</b></td>');
		document.write('</tr>');
    	document.write('<tr>');
			document.write('<td valign="middle" align="center"><br /><br /><br />');
				TipOfTheDay();
			document.write('<br /><br /><br /></td>');
		document.write('</tr>');
		document.write('<tr>');
			document.write('<td align="center"><a href="'+directory+pictures[selected[0]][1]+'"><img src="'+directory+'images/'+pictures[selected[0]][0]+'" alt="x" '+setSize()+'/></a><br/></td>');
		document.write('</tr>');
		document.write('<tr>');
			document.write('<td align="center"><a href="'+directory +pictures[selected[1]][1]+'"><img src="'+directory+'images/'+pictures[selected[1]][0]+'" alt="xx" '+setSize()+'/></a></td>');
		document.write('</tr>');
	document.write('</table>');
	document.write('</td></tr></table>');
}//function rightSidebar(folder)

function setSize(){
	if(screen.width>=1200)
   		return 'width="150" height="93"';
   	else if(screen.width>=1000)
   		return 'width="120" height="74"';
   	else if(screen.width>=800)	
   		return 'width="100" height="62"';
}   