// IMAGE ROTATION
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
theImages[0] ='/images/home_img1.jpg'
theImages[1] ='/images/home_img2.jpg'
//theImages[5] = 'images/left_col_cec6.jpg'
//theImages[6] = 'images/left_col_cec7.jpg'
// do not edit anything below this line
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage()
		{
		document.write('<img src="'+theImages[whichImage]+'">');
		}
		
// NAV ROLLOVER		
if (document.images) {

  image1on = new Image();
  image1on.src ="/images/nav_about_naba_on.gif";

  image2on = new Image();
  image2on.src ="/images/nav_professionals_on.gif";

  image3on = new Image();
  image3on.src ="/images/nav_students_on.gif";
 
  image4on = new Image();
  image4on.src ="/images/nav_programs_on.gif";
  
  image5on = new Image();
  image5on.src ="/images/nav_events_on.gif";

  image6on = new Image();
  image6on.src ="/images/nav_corp_on.gif";

  image7on = new Image();
  image7on.src ="/images/nav_contactus_on.gif";
  

  image1off = new Image();
  image1off.src ="/images/nav_about_naba.gif";

  image2off = new Image();
  image2off.src ="/images/nav_professionals.gif";

  image3off = new Image();
  image3off.src ="/images/nav_students.gif";
 
  image4off = new Image();
  image4off.src ="/images/nav_programs.gif";
  
  image5off = new Image();
  image5off.src ="/images/nav_events.gif";

  image6off = new Image();
  image6off.src ="/images/nav_corp.gif";

  image7off = new Image();
  image7off.src ="/images/nav_contactus.gif";  
 }

function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}

// GLOBAL NAV
function globalNav() {
document.write("<table cellpadding='0' cellspacing='0' border='0' width='750'><tr>");
document.write("<td bgcolor='#00234c' width='100%' align='right' class='smalltext'><img src='/images/clear.gif' width='1' height='20' alt='' align='left'><img src='/images/clear.gif' width='1' height='3'><br><a href='index.html' class='smalltext'>Home</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href='contact_us.html' class='smalltext'>Contact Us</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href='http://www.nabainc.org' target='_blank' class='smalltext'>NABAInc.org</a>&nbsp;&nbsp;&nbsp;</td></tr>");
document.write("<tr><td bgcolor='#FFFFFF' width='100%'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");
}

// MENU

/***********************************************
* AnyLink Vertical Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for menu 1 About Naba
var menu1=new Array()
// menu1[0]='<a href="history.html" class="nav">NABA History</a>'
menu1[0]='<a href="mission.html" class="nav">Our Mission</a>'
menu1[1]='<a href="board.html" class="nav">Chapter Board</a>'
//menu1[4]='<a href="http://tools.dynamicdrive.com/imageoptimizer/">Image Optimizer</a>'


//Contents for menu 2 Corporate Patnership
var menu2=new Array()
// menu2[0]='<a href="corp_programs.html" class="nav">Program Structure</a>'
// menu2[1]='<a href="corp_structure.html" class="nav">Structure</a>'

//Contents for menu 3 Programs
var menu3=new Array()
menu3[0]='<a href="prog_national.html" class="nav">National & Local</a>'
menu3[1]='<a href="prog_hartford.html" class="nav">Hartford Programs</a>'


//Contents for menu 4 Professionals
var menu4=new Array()
menu4[0]='<a href="prof_membership.html" class="nav">Membership</a>'


//Contents for menu 5 Students
var menu5=new Array()
menu5[0]='<a href="students_chapter.html" class="nav">Student Chapter</a>'
menu5[1]='<a href="#" class="nav">NABA Scholarships</a>'
// menu5[2]='<a href="students_membership.html" class="nav">Membership</a>'
		
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var horizontaloffset=2 //horizontal offset of menu from default location. (0-5 is a good value)

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width: 160px" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x-obj.offsetWidth < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure+obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move menu up?
edgeoffset=dropmenuobj.contentmeasure-obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either? (position at top of viewable window then)
edgeoffset=dropmenuobj.y
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+obj.offsetWidth+horizontaloffset+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

// ---------------------- Nav Items ---------------------------------------->

function navHome() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
document.write("<br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

function navAboutNABA() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1on'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
document.write("<br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

function navEvents() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5on')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
}

function navGallery() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5on')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
/* document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>"); */
}

function navCorp() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6on'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

function navPrograms() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4on'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
document.write("<br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

function navProfessionals() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2on')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
document.write("<br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

function navStudents() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3on'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7off'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
document.write("<br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

function navContactUs() {
document.write("<a href='about_naba.html' onMouseOver=\"\changeImages('image1', 'image1on'), dropdownmenu(this, event, menu1, '150px')\"\ onMouseOut=\"\changeImages('image1', 'image1off'), delayhidemenu()\"\><img name='image1' src='/images/nav_about_naba.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='professionals.html' onMouseOver=\"\changeImages('image2', 'image2on')\"\ onMouseOut=\"\changeImages('image2', 'image2off')\"\><img name='image2' src='/images/nav_professionals.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='students.html' onMouseOver=\"\changeImages('image3', 'image3on'), dropdownmenu(this, event, menu5, '150px')\"\ onMouseOut=\"\changeImages('image3', 'image3off'), delayhidemenu()\"\><img name='image3' src='/images/nav_students.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='prog_national.html' onMouseOver=\"\changeImages('image4', 'image4on'), dropdownmenu(this, event, menu3, '150px')\"\ onMouseOut=\"\changeImages('image4', 'image4off'), delayhidemenu()\"\><img name='image4' src='/images/nav_programs.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='events.html' onMouseOver=\"\changeImages('image5', 'image5on')\"\ onMouseOut=\"\changeImages('image5', 'image5off')\"\><img name='image5' src='/images/nav_events.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='corp_partnership.html' onMouseOver=\"\changeImages('image6', 'image6on')\"\ onMouseOut=\"\changeImages('image6', 'image6off'), delayhidemenu()\"\><img name='image6' src='/images/nav_corp.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<a href='contact_us.html' onMouseOver=\"\changeImages('image7', 'image7on')\"\ onMouseOut=\"\changeImages('image7', 'image7on'), delayhidemenu()\"\><img name='image7' src='/images/nav_contactus.gif' width='156' height='29' alt='' border='0'></a><br>");
document.write("<img src='/images/nav_btm.gif' width='156' height='34' alt='' border='0'><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt='' border='0'><br><img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>");
document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<div align='right'><br><a href='corp_partnership.html' class='footer'>Learn more</a> &gt;&nbsp;&nbsp;&nbsp;</div><img src='/images/clear.gif' width='1' height='5' alt=''></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''>");
document.write("<br><img src='/images/hd_calendar.gif' width='156' height='39' alt=''><br><iframe src='http://www.google.com/calendar/embed?src=admin%40nabahartford.org&amp;chrome=NONE&amp;epr=1&amp;height=557' style=' border:0 ' width='156' frameborder='0' height='270'></iframe><br>");
}

// ---------------------- End Nav Items ---------------------------------------->

function RightCol() {
document.write("<img src='/images/clear.gif' width='1' height='10' alt=''><br>");
// document.write("<img src='/images/hd_featured_event.gif' width='156' height='39' alt=''><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt=''><br><div align='center'><font size='2'><b>NABA 40th National Convention &amp; Expo</b><br><a href='http://convention.nabainc.org' target='_blank'>Get details</a></font></div><br><br>");
document.write("<img src='/images/clear.gif' width='1' height='5' alt=''><br><div align='center'><font size='2'>Check back for <br>2011 - 2012 scholarship information</font></div><br>");
// document.write("<img src='/images/clear.gif' width='1' height='5' alt=''><br><div align='center'><font size='2'><b>International Food & Wine Tasting</b></font></div><img src='/images/clear.gif' width='1' height='5' alt=''><br>Date: April 28, 2010<br>Time: 5:30 p.m. –7:30 p.m.<br>Where: SPRIS RESTURANT<br><a href='/NABA_GHC_Wine_Tasting.pdf' target='_blank'>Get more details</a><br><br>");
// document.write("<a href='/events_nabaghc10.html'><img src='/images/event_2010_classic.jpg' width='156' height='158' border='0' alt=''></a><br>");
/*document.write("<a href='/beb_nov2008.pdf' target='_blank'></a><img src='/images/event_09_nightofstars.gif' width='156' height='158' border='0' alt=''><br>"); */
document.write("<img src='/images/clear.gif' width='1' height='10' alt=''><br>");
document.write("<a href='/gallery.html'><img src='/images/gallery/gallery_icon.jpg' width='156' height='158' border='0' alt=''></a><br>");
/* document.write("<img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>"); */
//document.write("<td valign='top' width='100%' align='center'><img src='/images/corp_aetna.gif' width='124' height='55' alt='Aetna' vspace='10'><br><img src='/images/corp_deloitte.gif' width='124' height='45' alt='Deloitte' vspace='5'><br></td>");
/* document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<br></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''><br>"); */
}

function RightCol_gallery() {
document.write("<img src='/images/clear.gif' width='1' height='10' alt=''><br>");
document.write("<img src='/images/hd_featured_event.gif' width='156' height='39' alt=''><br>");
// document.write("<a href='/events_nabaghc10.html' target='_blank'></a><img src='/images/event_2010_classic.jpg' width='156' height='158' border='0' alt=''><br>");
// document.write("<a href='/events_08_beb.pdf' target='_blank'></a><img src='/images/event_09_nightofstars.gif' width='156' height='158' border='0' alt=''><br>");
document.write("<img src='/images/clear.gif' width='1' height='10' alt=''><br>");
/* document.write("<img src='/images/hd_corp.gif' width='156' height='39' alt=''><br>");
document.write("<table cellpadding='0' cellspacing='0' width='156' border='0'><tr>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td>"); */
//document.write("<td valign='top' width='100%' align='center'><img src='/images/corp_aetna.gif' width='124' height='55' alt='Aetna' vspace='10'><br><img src='/images/corp_deloitte.gif' width='124' height='45' alt='Deloitte' vspace='5'><br></td>");
/* document.write("<td valign='top' width='100%' align='center'><br>");
document.write("<div id='flashcontent'></div>");
document.write("<script type='text/javascript'>");
document.write("var so = new SWFObject('/images/logos_anim.swf', 'logos_anim', '124', '55', '8', '#FFFFFF');");
document.write("so.addParam('quality', 'high');");
document.write("so.addParam('salign', 't');");
document.write("so.write('flashcontent');");
document.write("</script>");
document.write("<br></td>");
document.write("<td bgcolor='#8d8c8e'><img src='/images/clear.gif' width='1' height='1' alt=''></td></tr></table>");		
document.write("<img src='/images/hd_corp_btm.gif' width='156' height='15' alt=''><br>"); */
}

function Footer() {
document.write("<table cellpadding='0' cellspacing='0' border='0' width='750'>");
document.write("<tr><td><img src='/images/clear.gif' width='156' height='1' alt=''></td><td valign='top' class='footer'><br><br>");
document.write("<div align='center'><img src='/images/db_image_manager.gif' width='477' height='31' alt=''></div>");
document.write("<p>2CheckOut.com Inc. (Ohio, USA) is an authorized retailer for goods and services provided by National Association of Black Accountants.</p>");
document.write("<div align='center'><a href='about_naba.html' class='footer'>About NABA</a>&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;<a href='events.html' class='footer'>Events</a>&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;<a href='corp_partnership.html' class='footer'>Corporate Partnership</a>&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;<a href='programs.html' class='footer'>Programs</a>&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;<a href='professionals.html' class='footer'>Professionals</a>&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;<a href='students.html' class='footer'>Students</a>&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;<a href='contact_us.html' class='footer'>Contact Us</a>&nbsp;&nbsp;&nbsp;<br>");
document.write("Copyright &copy; 2008. NABA Hartford Chapter, All rights reserved&nbsp;&nbsp;&nbsp;&#149;&nbsp;&nbsp;&nbsp;Designed by <a href='http://www.visionrain.com' class='footer' target='_blank'>VisionRain</a>.</div><br><br>");
document.write("</td></tr></table>");
}

