$(document).ready(function() { timedCount(0,1) }); function timedCount(currentIteration,firstattempt) { maxBannerIteration = 6; currentIteration = currentIteration+1; if(currentIteration > maxBannerIteration){currentIteration=1;} setTimeout("timedCount("+currentIteration+",0)",7000); if(firstattempt!=1){ display_homepage_highlight(currentIteration); } } function display_homepage_highlight(itemNumber){ //alert(itemNumber); switch(itemNumber){ case 1: highlight_image="sunglassesdudley.jpg"; highlight_link="http://www.fenchurch.com/mens/?cat=Sunglasses"; highlight_title="Fenchurch Sunglasses"; highlight_subtitle="Now online"; highlight_colour="black"; break; case 2: highlight_image="ss10womens05.jpg"; highlight_link="womens/"; highlight_title="Spring/Summer 2010 Collection"; highlight_subtitle="Now Online"; highlight_colour="red"; break; case 3: highlight_image="dudley03026.jpg"; highlight_link="www.fenchurch.com/mens/"; highlight_title="Spring/Summer 2010 Collection"; highlight_subtitle="Now Online"; highlight_colour="black"; break; case 4: highlight_image="naomi01060.jpg"; highlight_link="womens/"; highlight_title="Spring/Summer 2010 Collection"; highlight_subtitle="Now Online"; highlight_colour="black"; break; case 5: highlight_image="dudley07042.jpg"; highlight_link="www.fenchurch.com/mens"; highlight_title="Spring/Summer 2010 Collection"; highlight_subtitle="Now Online"; highlight_colour="red"; break; case 6: highlight_image="naomi06056.jpg"; highlight_link="www.fenchurch.com/womens"; highlight_title="Spring/Summer 2010 Collection"; highlight_subtitle="Now Online"; highlight_colour="black"; break; }//end switch //dislpay content newhtml="
"; $("#home_highlight_container").html(newhtml); }//end function