HI everybody
i need to know if there are a way to change the background image after a specific time like 10 sec or 30 sec...etc. you know like yahoo Login mail \"it\
You could use javascript's setTimeout or setInterval to do this, or look into JQuery's Timers
setTimeout
setInterval
EDIT: With JQuery, this will change the background after 1 sec:
$(window).oneTime(1000, function() { // change your background image here });