Advertisement
Advertisement
| 09.22.2008 at 12:10AM PDT, ID: 23750556 |
|
[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.
Your Input Matters 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! |
||
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: |
//rotating script function
var howOften = 5; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6
// place your images, text, etc in the array elements here
var items = new Array();
items[0]='<img src="images/p_travel.jpg" alt="" width="231" height="289" id="dynamicImage" />'; //an image
items[1]='<img src="images/p_apple.jpg" alt="" width="231" height="289" id="dynamicImage" />'; //an image
items[2]='<img src="images/p_beauty.jpg" alt="" width="231" height="289" id="dynamicImage" />'; //an image
items[3]='<img src="images/p_fashion.jpg" alt="" width="231" height="289" id="dynamicImage" />'; //an image
function rotater() {
if(document.layers) {
document.placeholderlayer.document.write(items[current]);
document.placeholderlayer.document.close();
}
if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
if(document.all)
placeholderdiv.innerHTML=items[current];
current = (current==items.length - 1) ? 0 : current + 1; //increment or reset
setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;
//the container
<layer id="placeholderlayer"></layer><div id="placeholderdiv"><img src="images/p_travel.jpg" alt="" width="231" height="289" id="dynamicImage" /></div>
//the mouseover
onmouseover="javascript:document.getElementById('placeholderdiv').innerHTML=items[3]"
|