// DOM ready var array_img = new Array("19831be72f87fdb49665ec51d2d9b512.jpg","3ad553165ef5bc21cbc14ac548b0046e.jpg","56177c6563a1d7e2a00bd2ae80d5e4fa.jpg","6c7ef88b9ac15da210567f627197cbbc.jpg","918c7d24042a637bef48a0f68f26e0cb.jpg","98888fdd43c619cf074f170b682016c1.jpg","a2252e6fddb35fcbfdcecd20375db8cb.jpg","a61dd8beeefc3c885c66dfbcb1f42c65.jpg","bfbdedfb01b9d6db0750d6f8224f8c0f.jpg","fa0beb05cbf1513c0f95a7ef3a7af6b6.jpg");var img_pos = 8;var img_total = 10;function interval(){var timerID = 0;timerID = setInterval(function(){$("#header").animate({opacity: 0}, 1000, function(){$("#header").css("background","url(../images/home/"+array_img[img_pos]+") top left repeat-x");});$("#header").animate({opacity: 1}, 1000);if (parseInt(img_pos) + 1 >= img_total){img_pos = 0;}else{img_pos = parseInt(img_pos) + 1;}}, 10000);return timerID;}$(document).ready(function(){$("#header").css("background","url(../images/home/"+array_img[img_pos]+") top left repeat-x");id = interval();});