Advertisement

07.13.2008 at 01:23PM PDT, ID: 23561199
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.9

Fixing differences in IE7, IE6, and FF

Asked by jeremyBass26 in JavaScript, Cascading Style Sheets (CSS)

Tags:

Hello, I ok I have been at this for a bit now and can't seem to get this one section to line up... look that same and function the same... I need this fixed and I'm running out of time so , would any one have the know how to bring them in line even if they are hack for now.... this uses jquery and I'm trying to use it were I can to lighten up the pages...

So to the Issues... IE7 works as expected, with only one problem if you view it higher the 1028... Minor though... IE6 well it does look right at all, and FF it works like IE7 but the float is under the links... not good... well I'm sure this is an easy one for a person more use to using jquery and or know a good deal on cross browser tricks and fixes... It already uses the iepngfix.htc in the cornflex-common.css which was in the script already... Also I'm use Conditional comments ... I may just be tripping on the IE6 issues...   thanks for the help here.
jeremyBass

Here is the link
https://www.sjrmc.org/Core/DoctorDirectory

side post thats related
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/HTML/Q_23554927.html
feel free to list some down if you can... I'm gettting a list together on this and think it'll be helpful for all...

Here are the key players in this area:
<script type="text/javascript" src="/Core/Scripts/jquery-1.2.6.pack.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.cornflex.js"></script>
<link rel="stylesheet" href="/Core/Scripts/cornflex-common.css" type="text/css" />
<script src="/Core/Scripts/float.js" type="text/javascript"></script> <<I wrote this it's my first real jquery script :-)
<style>
#tooltip{
      position:absolute;
      border:1px solid #333;
      background:#f7f5d1;
      padding:2px 5px;
      color:#333;
      display:none;
      width:200px;
      }      
.cornflex.whitebox{
width:200px;
}
</style>
Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="https://www.sjrmc.org/Core/modules/Album/css/stylesheet.css" />
<title>St. Joseph Regional Medical Center - Find a Doctor &#124; Lewiston Idaho</title>
<base href="https://www.sjrmc.org/Core/" />
<meta name="Generator" content="St. Joseph Regional Medical Center- People Committed to Life" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="title" content="Find a Doctor" />
	
		<meta name="description" content=" 
 
	
 $(document).ready(function(){  
                $("#cornflex1").cornflex('whitebox_Dira', {
        omega:"/>
	<meta name="keywords"
      content="best hospitals, Anesthesiology, Cardiology, Dentistry, Dermatology, Emergency Medicine, Family Practice, Gastroenterology, Hospitalist, Internal Medicine, Nephrology, Neurology, Neurosurgery, OB/GYN, Oncology, Opthamology, Oral Surgery, Orthopedics, Otolaryngology, Pathology, Pediatrics, Plastic Surgery, Psychiatry, Pulmonology, Radiology, Surgery, Surgical Assistant, Urology, Wound Care, Lewiston, Idaho, Washington, Clarkston, Regional Medical Center, Medical Center, St. Joseph, Doctors"/>
	<meta name="robots" content="NOFOLLOW,NOINDEX"/>
 
	<meta name="revisit-after" content="3 DAYS"/>
	<meta name="LASTUPDATE" content="Sun, 13 Jul 2008 09:52:58 -0700 MST" />
	<meta name="revised" content="Sun, 13 Jul 2008 09:52:58 -0700 MST" />
 
 
 
 
 
<script type="text/javascript" src="/Core/Scripts/AC_RunActiveContent.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery-1.2.6.pack.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.form.js"></script>
 
<script type="text/javascript" src="/Core/Scripts/shadowbox/build/adapter/shadowbox-base.js"></script>
<script type="text/javascript" src="/Core/Scripts/shadowbox/src/adapter/shadowbox-jquery.js"></script>
<script type="text/javascript"  src="/Core/Scripts/flashembed.pack.js"></script>
<script type="text/javascript" src="/Core/Scripts/shadowbox/build/shadowbox.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.cornflex.js"></script>
<script type="text/javascript" src="/Core/Scripts/MenuSystem/fsmenu.js"></script>
 
<link rel="stylesheet" href="/Core/Scripts/MenuSystem/listmenu_o.css" type="text/css" />
<link rel="stylesheet" href="/Core/Scripts/MenuSystem/listmenu_fallback.css" type="text/css" />
<link rel="stylesheet" href="/Core/Scripts/cornflex-common.css" type="text/css" />
<script language="JavaScript"  type="text/javascript">
var req=null;
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
} 
function startLoad(source,divid) { 
    req = GetXmlHttpObject();
    if( req )
    {
    	req.open('GET', source, true); 
    	req.onreadystatechange=function(){ finishLoad(divid); };
    	req.send(null); 
    }
} 
function finishLoad(divid) { 
    if (req.readyState==4) {   // request is done 
                if (req.status==200) { // "OK"
                 //alert("Site  Status 200")
				 toggleDiv(divid);
				 
            } else{
            //alert("Site  Status NOT 200")
            }
    } 
}
 
function toggleDiv(divid){
    var prefix = '';
    if (window.event.ctrlKey) {
         document.test.control.value = 'true';
      }else{
         if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
      document.pageLoading.TCallLabel('/','restart_function');
          }else{
      document.getElementById(divid).style.display = 'none';
   		 }
      }
 
}
//-->
 
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, ',type=fullWindow,fullscreen,menubar=yes,scrollbars=yes');
return false;
}
//-->
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function P7_MinMaxW(a,b){var nw="auto",w=document.documentElement.clientWidth;if(w>=b){nw=b+"px";}if(w<=a){nw=a+"px";}return nw;}
//-->
</script>
<!--[if lte IE 6]>
<style type="text/css">
#pagewrapper2 {width:expression(P7_MinMaxW(800,1000));}
#container {height: 1%;}
</style>
<![endif]-->
 
 
 
 
 
<link rel="stylesheet" type="text/css" media="screen" href="https://www.sjrmc.org/Core/stylesheet.php?templateid=35&amp;mediatype=screen" />
<link rel="stylesheet" type="text/css" media="print" href="https://www.sjrmc.org/Core/stylesheet.php?templateid=35&amp;mediatype=print" />
 
 
 
<link rel="start" title="We at St. Joseph Regional Medical Center strive to stay on top of the newest tools to help you reach your peak health.  What is one of our newest tools?  You're looking at it.  This new website will keep you and our doctors closer then ever." href="https://www.sjrmc.org/Core/" />
<link rel="prev" title="Enjoy one of the easy applications you'll evern have to fill out.  This RIA application is made to protect you in the highest degree." href="https://www.sjrmc.org/Core/employment-opportunities/interactive-job-application" />
<link rel="next" title="View a list of the Anesthesiology doctors at St. Joseph Regional Medical Center" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia" />
 
 
<script src="/Core/Scripts/float.js" type="text/javascript"></script>
<style>
#tooltip{
	position:absolute;
	border:1px solid #333;
	background:#f7f5d1;
	padding:2px 5px;
	color:#333;
	display:none;
	width:200px;
	}	
.cornflex.whitebox{
width:200px;
}
</style>
<!--[if gte IE 7]><!-->
 <style type="text/css">
div#header h1 a {
   background: url(images/cms/logo1.png) no-repeat 0 12px; 
	}
</style>
<!--<![endif]-->
<!--[if lt IE 7]>
 <style type="text/css">
div#header h1 a {
	/* you can set your own image here */
background: url(images/cms/logoFix.png) no-repeat 0 12px;
	}
</style>
<script src="/Core/Scripts/ie7/IE7.js" type="text/javascript"></script>
<![endif]-->
 
 
 
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="https://www.sjrmc.org/Core/News/rss/" /></head>
<body>
 
<table id="maintable" cellspacing="0" cellpadding="0">
  <tr>
    <td id="leftGRD"></td>
    <td id="pagewrapper">
<div id="pagewrapper2">
        <ul class="accessibility">
      <li><a href="/Core/DoctorDirectory#menu_vert" title="Skip to navigation" accesskey="n">Skip to navigation</a></li>
      <li><a href="/Core/DoctorDirectory#main" title="Skip to content" accesskey="s">Skip to content</a></li>
 
    </ul>
    
    <hr class="accessibility" />
    
      <div id="header">
           <h1><a href="https://www.sjrmc.org/Core/" title="We at St. Joseph Regional Medical Center strive to stay on top of the newest tools to help you reach your peak health.  What is one of our newest tools?  You're looking at it.  This new website will keep you and our doctors closer then ever.">St. Joseph Regional Medical Center</a></h1>
   <hr class="accessibility" />
   </div>
   
<div id="midHeader" style="z-index: -1000">
<div id="hideMe4" style="
	z-index: -1000;
	display: '';
">
<div id="testFS"></div>
 
<script>
flashembed("testFS", { 
  src: '/Core_images/elements/Test resize.swf', 
  version: [8,0], 
width:775,
   
  /*  
    this- variable points to the supplied parameters  
    and user's version is given as argument 
  */ 
  onFail: function(version)  { 
     return "version " +this.version+ " is required. you have " +version;  
  } 
});	
</script>
</div> 
 
	
</div>
      <div id="search">
          <table width="100%" border="0" cellspacing="0" cellpadding="0">
  
  <tr>
    <td>
      <div class="login_OUT"><a href="my-account/login/" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Account&nbsp;&frasl;&nbsp;</a><a href="https://www.sjrmc.org/Core/my-account/login" title="My Account">login</a>&nbsp;|</div>
 
       </td>
    
    <td>
<form id="cntnt01moduleform_1" method="get" action="index.php"><div class="hidden"><input type="hidden" name="mact" value="Search,cntnt01,dosearch,0" /><input type="hidden" name="cntnt01returnid" value="75" /></div>
 
    <label for="cntnt01searchinput">Search</label>:&nbsp;<input type="text" name="cntnt01searchinput" size="20" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;"/><input name="submit" value="Submit" type="submit" onMouseDown="javascript:toggleDiv('hideMe3')"/>
 
</form>
 
</td>
     </tr>
  
 
</table>
   </div>
   
      <div class="breadcrumbs">
        You are here: <span class="lastitem">Find a Doctor</span>
   <hr class="accessibility" />
   </div>
   
      <div id="content">
            <div id="sidebar">
 
            <div id="menu_vert">
 
 
<ul class="menulist" id="listMenuRoot">
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/" accesskey="1" ><dfn>1: </dfn>St. Joseph Home</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/services" ><dfn>2: </dfn>Services</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/auxiliary-volunteer" ><dfn>2.1: </dfn>Auxiliary Volunteer</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/regional-cancer-center" ><dfn>2.2: </dfn>Regional Cancer Center</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/services/CHERC" ><dfn>2.3: </dfn>Resource Center</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/cpr" ><dfn>2.3.1: </dfn>CPR</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/first-aid" ><dfn>2.3.2: </dfn>First Aid</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/family-beginnings-classes" ><dfn>2.3.3: </dfn>Family Beginnings Classes</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/diabetes-center-education" ><dfn>2.3.4: </dfn>Diabetes Center-Education</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/tobacco-free-you" ><dfn>2.3.5: </dfn>Tobacco Free You</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/nutrition-education" ><dfn>2.3.6: </dfn>Nutrition Education</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/wound-and-ostomy-education" ><dfn>2.3.7: </dfn>Wound and Ostomy Education</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/staff-content/health-news"  target="_self"><dfn>2.5: </dfn>Health News</a>
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/family-beginnings" ><dfn>3: </dfn>Family Beginnings</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/family-beginnings/classes-groups" ><dfn>3.1: </dfn>Classes and Groups</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/family-beginnings/newborns" ><dfn>3.2: </dfn>Newborns</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/family-beginnings/newborns/2007-2" ><dfn>3.2.1: </dfn>2007</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/family-beginnings/newborns/2008-2" ><dfn>3.2.2: </dfn>2008</a>
 
 
	</li></ul></li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/events-calendar" ><dfn>4: </dfn>Events Calendar</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/events-calendar/today-at-st-joe-s" ><dfn>4.1: </dfn>Today at St. Joe&#39;s</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/about-st-joseph" ><dfn>5: </dfn>About St. Joseph</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/contact-st-joseph" ><dfn>5.1: </dfn>Contact St. Joseph</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/accreditations" ><dfn>5.2: </dfn>Accreditations</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/publications" ><dfn>5.3: </dfn>Publications</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/news" ><dfn>5.4: </dfn>News</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/awards" ><dfn>5.5: </dfn>Awards</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/foundation" ><dfn>6: </dfn>Foundation</a>
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/foundation/board-members" ><dfn>6.1: </dfn>Board Members</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/foundation/foundation-projects" ><dfn>6.2: </dfn>CENTURY CLUB</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/foundation/foundation-projects-2" ><dfn>6.3: </dfn>Foundation Projects</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/gift-shop" ><dfn>7: </dfn>Gift Shop</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/employment-opportunities" ><dfn>8: </dfn>Employment Opportunities</a>
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/employment-opportunities/interactive-job-application" ><dfn>8.1: </dfn>Job Application</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory" ><dfn>9: </dfn>Find a Doctor</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia" ><dfn>9.1: </dfn>Anesthesia</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/larry-davis" ><dfn>9.1.2: </dfn>Larry Davis, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/thomas-j-grissom" ><dfn>9.1.3: </dfn>Thomas J. Grissom MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/craig-flinders" ><dfn>9.1.4: </dfn>Craig Flinders, MD </a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/gary-haas" ><dfn>9.1.5: </dfn>Gary Haas, DO </a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/lyndal-stoutin" ><dfn>9.1.6: </dfn>Lyndal Stoutin, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/thomas-r-boubel" ><dfn>9.1.7: </dfn>Thomas R. Boubel, MD </a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/frank-b-ditto" ><dfn>9.1.8: </dfn>Frank B. Ditto, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/edward-a-vivian" ><dfn>9.1.9: </dfn>Edward A. Vivian, MD</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Cardiology" ><dfn>9.2: </dfn>Cardiology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dentistry" ><dfn>9.4: </dfn>Dentistry</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dermatology" ><dfn>9.5: </dfn>Dermatology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Emergency-Medicine" ><dfn>9.6: </dfn>Emergency Medicine</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Family-Practice" ><dfn>9.7: </dfn>Family Practice</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gastroenterology" ><dfn>9.8: </dfn>Gastroenterology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_General-Surgery" ><dfn>9.9: </dfn>General Surgery</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gynecology" ><dfn>9.10: </dfn>Gynecology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hematology" ><dfn>9.11: </dfn>Hematology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine" ><dfn>9.12: </dfn>Hospitalist Medicine</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/michael-c-minick" ><dfn>9.12.1: </dfn>Michael C. Minick, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/barbara-kammer" ><dfn>9.12.2: </dfn>Barbara Kammer, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/thomas-r-strobel" ><dfn>9.12.3: </dfn>Thomas R. Strobel, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/william-c-dir" ><dfn>9.12.4: </dfn>William C. Dir</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/jeff-harris" ><dfn>9.12.5: </dfn>Jeff Harris, MD</a>
 
 
	</li></ul>
	</li>
 
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Internal-Medicine" ><dfn>9.13: </dfn>Internal Medicine</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Oral-surgery" ><dfn>9.21: </dfn>Oral Surgery</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Plastic-Purgery" ><dfn>9.27: </dfn>Plastic Surgery</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory" ><dfn>9.36: </dfn>Find More Doctors...</a>
 
 
	</li></ul>		</li>
	</ul>
 
 
<script type="text/javascript">
//<![CDATA[
 
 
var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
 
 
listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
listMenu.animations[listMenu.animations.length] = FSMenu.animClipDown;
 
 
var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>'));
 // Feel free to replace the above two lines with these for a small arrow image...
 //arrow = document.createElement('img');
 //arrow.src = 'arrow.gif';
 //arrow.style.borderWidth = '0';
 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));
 
 
// You may wish to leave your menu as a visible list initially, then apply its style
// dynamically on activation for better accessibility. Screenreaders and older browsers will
// then see all your menu data, but there will be a 'flicker' of the raw list before the
// page has completely loaded. If you want to do this, remove the CLASS="..." attribute from
// the above outermost UL tag, and uncomment this line:
//addEvent(window, 'load', new Function('getRef("listMenuRoot").className="menulist"'));
 
//]]>
</script>
 
         <h2 class="accessibility">Navigation</h2>
      </div>
            <div id="news">
         <h2><a href="https://www.sjrmc.org/Core/about-st-joseph/news" onMouseDown="javascript:toggleDiv('hideMe3')">News</a></h2>
          <!-- Displaying News Module -->
<!-- News Categories: '' -->
<!-- Start News Display Template -->
 
 
<div class="NewsSummary"> <div class="NewsSummaryPostdate">05/30/2008</div>
    <div class="NewsSummaryLink"><a href="https://www.sjrmc.org/Core/news/3/88/Brenda-McIntosh-2008-Employee-of-the-Year">Brenda McIntosh 2008 Employee of the Year</a></div>
  <div class="NewsSummaryCategory">Category: Employee News</div>
     <!--<div class="NewsSummaryAuthor">Posted by: StjoeAdmin</div>-->
    <div class="NewsSummarySummary">Brenda McIntosh, a 24-year employee of St. Joseph Regional Medical Center, has been selected as the 2008 Employee of the Year in recognition of her many contributions.</div>
  <div class="NewsSummaryMorelink" onMouseDown="javascript:toggleDiv('hideMe3')"><span style="float:left; line-height:13px;">[<a href="https://www.sjrmc.org/Core/news/3/88/Brenda-McIntosh-2008-Employee-of-the-Year">More</a>]</span><span style="float:right; line-height:13px;"><a href="https://www.sjrmc.org/Core/about-st-joseph/news">&#91;Browse&#93;</a></span><br/></div>
 
  </div>
<!-- End News Display Template -->
      </div>
 
      <div style="text-align:left;" >
<a href="../pacs.html" onclick="return popup(this,'bigwindow')" ><img border="0" width="204" src="images/cms/pacs.png" height="38" alt="PACS Link"/></a>
</div>
<div style="text-align:right;" >
<br/><a href="https://www.sjrmc.org/Core/staff-content/health-news"><img src="/St_Joe_Core/images/icon-healthday-box.gif" alt="Health Day" width="200" height="157" border="0" style="margin-left:10px;"/></a><br/><br/>
<a target="_self" href="https://www.sjrmc.org/Core/services/CHERC"><img border="0" width="180" src="images/cherc_DB_flat.png" alt="Community Health Education Resource Center" height="63" /></a>
<br/>
<br/>
<a target="_self" href="https://www.sjrmc.org/Core/foundation" onmousedown="javascript:toggleDiv('hideMe3')"><img border="0" width="180" src="/St_Joe_Core/images/logo_foundation.gif" alt="St. Joseph Regional Medical Center Foundation" height="50" /></a>
<br/>
 
<a target="_blank" href="http://www.ascensionhealth.org/"><img border="0" width="160" src="../images/logo_ascension_health.gif" alt="Ascension Health" height="73" /></a>
<br/><br/>
</div>
      </div>
                  <div id="main">
         <div style="float: right;">
 
<a href="https://www.sjrmc.org/Core/help" onmousedown="startLoad('https://www.sjrmc.org/Core/help','hideMe3'); location.href='https://www.sjrmc.org/Core/help'; return false;">
 
 
 
<script type="text/javascript"> 
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','35','height','35','title','Visit the St Joseph Help Desk','src','images/cms/HelpDeskICO','wmode', 'transparent','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','images/cms/HelpDeskICO' ); 
//end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=images/cms/HelpDeskICO.swf" 
width="35" height="35">
<param name="wmode" value="transparent" />
<param name="movie" 
value="c.swf?path=images/cms/HelpDeskICO.swf" />
</object></noscript>
 
 
</a>
 
 
 
 
 
 
 
<a href='https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=75&amp;page=75'  onmousedown="startLoad('https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=75&amp;page=75','hideMe3'); location.href='https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=75&amp;page=75'; return false;" >
 
<script type="text/javascript"> 
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','35','height','35','title','Get Printable View','src','/Core/modules/Printing/PrintICON','wmode', 'transparent','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','/Core/modules/Printing/PrintICON' ); 
//end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=/Core/modules/Printing/PrintICON.swf" 
width="35" height="35">
<param name="wmode" value="transparent" />
<param name="movie" 
value="c.swf?path=/Core/modules/Printing/PrintICON.swf" />
</object></noscript>
 
 
</a>
 
</div>
         <h2>Find a Doctor</h2>
         
<div class="category_items">
	
<script language="JavaScript"  type="text/javascript">$(document).ready(function(){  
                $("#cornflex1").cornflex('whitebox_Dira', {
        omega: 20,
        image_t: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_t-trans.png',
        image_r: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_r-trans.png',
        image_b: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_b-trans.png',
        image_l: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_l-trans.png',
        alpha: 12,
        beta: 18,
        gamma: 24,
        delta: 18
 
                });
 
});
</script>
  <div id="cornflex1">
          <h3 style=" margin-top:-10px; font-size:18px;">Specialties</h3>
        <ul id="DocList">          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Anesthesia" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Anesthesia</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Cardiology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Cardiology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Cardiology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dentistry" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Dentistry" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Dentistry</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dermatology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Dermatology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Dermatology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Emergency-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Emergency Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Emergency Medicine</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Family-Practice" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Family Practice" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Family Practice</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gastroenterology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Gastroenterology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Gastroenterology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_General-Surgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> General Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">General Surgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gynecology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Gynecology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Gynecology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hematology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Hematology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Hematology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Hospitalist Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Hospitalist Medicine</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Internal-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Internal Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Internal Medicine</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Invasive-Cardiology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Invasive Cardiology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Invasive Cardiology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Nephrology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Nephrology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Nephrology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Neurology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Neurology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Neurology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Neurosurgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Neurosurgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Neurosurgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Obstetrician" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Obstetrician" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Obstetrician</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Oncology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Oncology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Oncology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Ophthalmology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Ophthalmology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Ophthalmology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Oral-surgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Oral Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Oral Surgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Orthopedic-Surgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Orthopedic Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Orthopedic Surgery</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Otolaryngology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Otolaryngology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Otolaryngology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pain-Management" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pain Management" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pain Management</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pathology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pathology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pathology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pediatrics" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pediatrics" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pediatrics</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Plastic-Purgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Plastic Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Plastic Surgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Psychiatry" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Psychiatry" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Psychiatry</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pulmonology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pulmonology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pulmonology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Radiation-Oncology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Radiation Oncology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Radiation Oncology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Radiology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Radiology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Radiology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Sleep-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Sleep Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Sleep Medicine</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Surgical-Assistant" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Surgical Assistant" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Surgical Assistant</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Urology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Urology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Urology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Wound-Care" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Wound Care" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Wound Care</a>
        </li>        </ul>
<br/>
  
  </div>
</div>
 
<div style="clear:right;"></div>
<br/>
<br/> <br />
 	 <div class="hr"><table width="100%" border="0" cellspacing="0" cellpadding="0" summary="Qiuck Contact List">
 
  <tr>
    <td align="left"><span style="color:#00194d;font-weight: bold; font-size:8px;"><a href="https://www.sjrmc.org/Core/help/BrowserCompatibilities">Browser Compatibilities</a></span></td>
    <td align="right"><span style="color:#00194d;font-weight: bold;font-size:14px;"><a href="https://www.sjrmc.org/Core/about-st-joseph/contact-st-joseph" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Contact Us</a> &bull; <a href="https://www.sjrmc.org/Core/DoctorDirectory" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Find A Doctor</a> &bull; <a href="https://www.sjrmc.org/Core/services/CHERC" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Join A Class</a></span></td>
  </tr>
</table></div>
 
         <div>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="9px"><img src="images/Aceess_Link_left.gif" width="9" height="51" alt=" "/></td>
    <td class="AccessLink"><span class="AccessLinktitle" >Accessibility  links</span><br/><span class="AccessLinks" >Previous page: <a href="https://www.sjrmc.org/Core/employment-opportunities/interactive-job-application" title="Enjoy one of the easy applications you'll evern have to fill out.  This RIA application is made to protect you in the highest degree.">Job Application</a><br/> 
Next page: <a href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia" title="View a list of the Anesthesiology doctors at St. Joseph Regional Medical Center">Anesthesia</a></span>
</td>
 
    <td width="41px"><img src="images/Aceess_Link_right.gif" width="41" height="51" alt=" "/></td>
  </tr>
</table>
 
         </div>
         	 
      <hr class="accessibility" />
      </div>
	     </div>
         <div id="footer">
<br/>This site was Created by <a href="http://digitalbarn.tv/"><font color="#ffffff"><font color="#ff0000">d</font>igital <font color="#ff0000">b</font>arn productions</font></a><br/>
 
Managed by <script type="text/javascript"><!-- 
document.write("<span>" , "", " </", "span><a ", "href=\"", "&#109;a&#105;&#108;", "t&#111;", ":","dbjeremy", "&#64;","cableone.net","?subject=","From St joe", "\"><font style=\"","color:#ffffff","\">","Jeremy Bass","</", "font>", "</", "a>", "</", "span>");
//--></script><br/><br/>
   </div>
 
<div id="hideMe3" style="
display: none;
position: fixed;
bottom: 0;
left: 0;
z-index: 100;
">
 
<script type="text/javascript"> 
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','362','height','35','title','Header','src','/Core/elements/pageLoading','wmode', 'transparent','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','/Core/elements/pageLoading' ); 
//end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=/Core/elements/pageLoading.swf" 
width="362" height="35">
<param name="wmode" value="transparent" />
<param name="movie" 
value="c.swf?path=/Core/elements/pageLoading.swf" />
</object></noscript></div> 
 
 
   </div>
</td>
    <td id="rightGRD">
 
</td>
 
  </tr>
</table>
</body>
</html>
<!-- 0.823646 / 226 -->
Attachments:
 
IE6
IE6
 
 
IE7
IE7
 
 
FF
FF
 
 
the foalt script.. the rest are the defaults.. this is the only custom one by me...
 
[+][-]07.13.2008 at 09:21PM PDT, ID: 21995622

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: JavaScript, Cascading Style Sheets (CSS)
Tags: jquery javascript
Sign Up Now!
Solution Provided By: logicalinsanity
Participating Experts: 1
Solution Grade: B
 
 
[+][-]07.13.2008 at 09:53PM PDT, ID: 21995732

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.13.2008 at 10:24PM PDT, ID: 21995844

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.13.2008 at 10:26PM PDT, ID: 21995851

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.14.2008 at 07:18AM PDT, ID: 21998273

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.14.2008 at 08:14AM PDT, ID: 21998792

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.14.2008 at 08:50AM PDT, ID: 21999188

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.14.2008 at 10:45AM PDT, ID: 22000278

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-44 / EE_QW_2_20070628