	
	        // Set slideShowSpeed (milliseconds)
                var slideShowSpeed = 3000
                
            // Duration of crossfade (seconds)
                var crossFadeDuration = 3
            
            // Specify the image files
            var headershome = new Array()
			headershome[0] = 'App_Themes/Theme1/images/pic_big_bannerhome-1.jpg';
			headershome[1] = 'App_Themes/Theme1/images/pic_bigbannerhome-2.jpg';
          
            var t
            var j = 0
            var p = headershome.length
            
            var preLoadhome = new Array()
            for (i = 0; i < p; i++){
             preLoadhome[i] = new Image()
             preLoadhome[i].src = headershome[i]
            }
            
            function RandomBackgroundhome()
            {
             if (document.all)
             {
             document.images.SlideShowhome.style.filter="blendTrans(duration=2)"
             document.images.SlideShowhome.style.filter="blendTrans(duration=crossFadeDuration)"
             document.images.SlideShowhome.filters.blendTrans.Apply()
             }
             document.images.SlideShowhome.src = preLoadhome[j].src
            
             if (document.all)
             {
             document.images.SlideShowhome.filters.blendTrans.Play()
             }
             j = j + 1
             if (j > (p-1)) j=0
             t = setTimeout('RandomBackgroundhome()', slideShowSpeed)
            }
      
