// Jonny slideshow and different date image show
//JTM - only show specific images on certain days 
var imlocation="banners/";function ImageArray(n){this.length=n;for(var i=1;i<=n;i++){this[i]=" "}}image=new ImageArray(7);image[0]="sunday.jpg";image[1]="monday.jpg";image[2]="tuesday.jpg";image[3]="wednesday.jpg";image[4]="thursday.jpg";image[5]="friday.jpg";image[6]="saturday.jpg";var currentdate=new Date();var imagenumber=currentdate.getDay();function slideSwitch(){var $active=$("#slideshow img.active");if($active.length==0){$active=$("#slideshow img:last")}var $next=$active.next().length?$active.next():$("#slideshow img:first");$active.addClass("last-active");$next.css({opacity:0}).addClass("active").animate({opacity:1},1000,function(){$active.removeClass("active last-active")})}$(function(){if(imagenumber==0){$("#slideshow img:first").removeClass("active");$("#slideshow").append("<img class='active slide1' border='0' src='"+imlocation+image[imagenumber]+"'>");setInterval("slideSwitch()",6000)}else{setInterval("slideSwitch()",6000)}});