Works fine here. For layout purposes you should use valid HTML and a DOCTYPE that invokes standards, but what you have there works OK. It just lays out a little oddly in some browsers. Here it is with valid markup and a standards invoking DOCTYPE:
Code:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://www.************/fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (Dynamic Drive DHTML(dynamic html) & JavaScript code library)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at Dynamic Drive DHTML(dynamic html) & JavaScript code library 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: [625, 275], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://************/banners/potalachina.jpg", "http://www.************/Tibet.php", "", "Potala Palace in Tibet."],
["http://************/banners/treking_ghandruk.jpg", "http://************/Nepal.php", "", "On the way to Ghandruk in Annapurna trekking"],
["http://************/banners/ilovenepal.jpg", "", "", "Students from Netherlands wearing I Love Nepal T-shirt while our presentation in the Netherlands"],
["http://************/banners/Tiger_nest_bhutan.JPG", "", "", "Tiger Nest or Takshang, Guru Rimpoche's cave in Bhutan."] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "peekaboo",
togglerid: ""
})
</script>
</head>
<body><div id="fadeshow1"></div>
<br />
</body>
</html>
As long as you don't move the resources (scripts and images) from their current locations, that works. Your domain must be on some kind of ban list, but I figured it out. Once again, as long as you don't move the resources, here's a live demo:
http://home.comcast.net/~jscheuer1/side/egtours_h.htm
And I now see that your actual home page uses prototype 1.5.0_pre1, which as far as I know is incompatible with jQuery. So, unless you can update to at least prototype 1.6.0.2, which may require you to update effects as well as any scripts using them (it would actually be better, if you can, to update to the most recent prototype version) - That's if you even need them at all - I'm not sure what you're doing with them . . . Unless you can deal with that, you cannot use jQuery, which is required by Ultimate Fade 2.x. Even if you can, the order in which the scripts appear in the head would have to be a certain way to avoid conflicts.
You could use something like:
http://www.dynamicdrive.com/dynamici...army/index.htm
which doesn't require jQuery.
Bookmarks