// left column contact bar
// is department specific based on url
var url2 = window.location.href;
var urlparts2 = url2.split('/');
var dept2 = urlparts2[4];
if(dept2 == "publish"){dept2 = urlparts2[6]}

if(dept2 == "bme")
{
 document.getElementById('lc_dept_badge').innerHTML = "<p style=\"padding:5px 5px 0 5px;margin-bottom:0;\"><strong>Department of Biomedical Engineering</strong><br />Wishnick Hall, Room 314<br />3255 S. Dearborn St.<br />Chicago, IL 60616<br />P: 312.567.5324<br />F: 312.567.5770</p><a href=\"/engineering/bme/about/administrative_offices.shtml\"><img src=\"/engineering/images/left_column/contact_icon.gif\" width=\"160\" height=\"50\" alt=\"BME Staff Contacts\" border=\"0\"  /></a>";
}
else if(dept2 == "chbe")
{
 document.getElementById('lc_dept_badge').innerHTML = "<p style=\"padding:5px 5px 0 5px;margin-bottom:0;\"><strong>Department of Chemical and Biological Engineering</strong><br />Perlstein Hall, Room 127<br />10 W. 33rd St.<br />Chicago, IL 60616<br />P: 312.567.3040<br />F: 312.567.8874<br /><a href=\"mailto:chbe@iit.edu\">chbe@iit.edu</a></p><a href=\"/engineering/chbe/about/administrative_offices.shtml\"><img src=\"/engineering/images/left_column/contact_icon.gif\" width=\"160\" height=\"50\" alt=\"ChBE Staff Contacts\" border=\"0\"  /></a>";
}
else if(dept2 == "mmae")
{
 document.getElementById('lc_dept_badge').innerHTML = "<p style=\"padding:5px 5px 0 5px;margin-bottom:0;\"><strong>Department of Mechanical, Materials, and Aerospace Engineering</strong><br />Engineering 1 Building<br />Room 243<br />10 W. 32nd St.<br />Chicago, IL 60616<br />P: 312.567.3175<br />F: 312.567.7230<br /><a href=\"mailto:mmae@iit.edu\">mmae@iit.edu</a></p><a href=\"/engineering/mmae/about/administrative_offices.shtml\"><img src=\"/engineering/images/left_column/contact_icon.gif\" width=\"160\" height=\"50\" alt=\"MMAE Staff Contacts\" border=\"0\"  /></a>";
}
else if(dept2 == "cae")
{
 document.getElementById('lc_dept_badge').innerHTML = "<p style=\"padding:5px 5px 0 5px;margin-bottom:0;\"><strong>Department of Civil, Architectural, and Environmental Engineering</strong><br />Alumni Memorial Hall<br />Room 228<br />3201 S. Dearborn St.<br />Chicago, IL 60616<br />P: 312.567.3540<br />F: 312.567.3519</p><a href=\"/engineering/cae/about/administrative_offices.shtml\"><img src=\"/engineering/images/left_column/contact_icon.gif\" width=\"160\" height=\"50\" alt=\"CAEE Staff Contacts\" border=\"0\"  /></a>";
}
else if(dept2 == "ece")
{
 document.getElementById('lc_dept_badge').innerHTML = "<p style=\"padding:5px 5px 0 5px;margin-bottom:0;\"><strong>Department of Electrical and Computer Engineering</strong><br />Siegel Hall, Suite 103<br />3301 S. Dearborn St.<br />Chicago, IL 60616<br />P: 312.567.3400<br />F: 312.567.8976</p><a href=\"/engineering/ece/about/contacts.shtml\"><img src=\"/engineering/images/left_column/contact_icon.gif\" width=\"160\" height=\"50\" alt=\"ECE Staff Contacts\" border=\"0\"  /></a>";
}
