In this post i have given javascript code for Ads Image Slideshow.You can see it in my blog. From this you can save some space.
How to Implement….
1. Login to Blogger Dashboard
2. Go to Layout and Click on Add a Gadget
3. Select Html/Javascript
4. Paste following code in opened box …
<SCRIPT LANGUAGE="JavaScript">
<!–
//set image paths
src = ["http://files.adbrite.com/mb/images/125x125-1-red.gif", ""]
//set corresponding urls
url = ["http://www.adbrite.com/mb/landing_both.php?spid=102682&afb=125x125-1-red", ""]
//set duration for each image
duration = 4;
//Please do not edit below
ads=[]; ct=0;
function switchAd() {
var n=(ct+1)%src.length;
if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
document["Ad_Image"].src = ads[ct=n].src;
}
ads[n=(ct+1)%src.length] = new Image;
ads[n].src = src[n];
setTimeout("switchAd()",duration*1000);
}
function doLink(){
location.href = url[ct];
} onload = function(){
if (document.images)
switchAd();
}
//–>
</SCRIPT>
<A HREF="javascript:doLink();" onMouseOver="status=url[ct];return true;"
onMouseOut="status=”">
<IMG NAME="Ad_Image" SRC="http://files.adbrite.com/mb/images/125×125-1-red.gif" BORDER=0>
</A>
<p align="center"><font face="arial" size="-2"> <a href="http://blogger-godown.blogspot.com">Get this Script</a></font></p>
5. Change red colored image address with your images and blue colored with corresponding url of the images and set duration by modifying pink colored number.You will see red colored image address at the bottom of the script, change this with your first image.





