Before doing any of this, make a backup copy of your page just in case.
Most things that are duplicated like two of these:
Code:
<link type="text/css" rel="stylesheet" href="INFO_BAR_MENU.css">
<link type="text/css" rel="stylesheet" href="LEFT_MENU.css">
<script type="text/javascript" src="milonic_src.js"></script>
<script type="text/javascript" src="mmenudom.js"></script>
</head>
and two of these:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script type="text/javascript" src="fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script> <script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [350, 250], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://stephaniesuggests.com/images/Rotating1.jpg", "", "", "Welcome to United Physical Therapy in Peru, IL!"],
["http://stephaniesuggests.com/images/Rotating4.jpg", "", "", "Just follow the sign to our office."],
["http://stephaniesuggests.com/images/Rotating6.jpg", "", "", "Our office is private and welcoming."],
["http://stephaniesuggests.com/images/Rotating9.jpg", "", "", "And our waiting room is comfortable and quiet"],
["http://stephaniesuggests.com/images/Rotating2.jpg", "", "", "Each room was designed with your comfort and privacy in mind"],
["http://stephaniesuggests.com/images/Rotating10.jpg", "", "", "Personalized attention promotes your progress and recovery."],
["http://stephaniesuggests.com/images/Rotating3.jpg", "", "", "Any necessary exercises are performed in a private setting"],
["http://stephaniesuggests.com/images/Rotating5.jpg", "", "", "One-on-one care is the best care possible!"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false, randomize:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
With stuff like that, generally the second of the two duplicates should be kept. In the case of the slide show code, the second one is in the body. It belongs in the head, so the first should be eliminated and the second placed in the head.
To center the slide show (which will center its images), add this style:
Code:
#fadeshow1 {
margin: 0 auto;
}
But for that to work in IE, you will need to change your DOCTYPE (the very first thing in your page's source code) from:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
to:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
Bookmarks