var bckg=new fadeSlideShow({
      	wrapperid: "bckg", //ID of blank DIV on page to house Slideshow
      	dimensions: [842, 506], //width/height of gallery in pixels. Should reflect dimensions of largest image
      	imagearray: [
      		["http://www.dobrejedlo.com/gfx/bckg1.jpg"],
      		["http://www.dobrejedlo.com/gfx/bckg2.jpg"],
      		["http://www.dobrejedlo.com/gfx/bckg3.jpg"]
      	],
      	displaymode: {type:'auto', pause:3000, cycles:0, wraparound:false},
      	persist: true, //remember last viewed slide and recall within same session?
      	fadeduration: 1000, //transition duration (milliseconds)
      	descreveal: "none",
      	togglerid: ""
      });
      (function($, gal){
      	var set, id, num;
      	if((gal = window[gal]) && (num = fadeSlideShow.routines.getCookie("gallery-" + (id = (set = gal.setting).wrapperid)))){
      		$('head').append('<style type="text/css">#' + id + ', #' + id + ' .gallerylayer { background-image: url(' + set.imagearray[num][0] + ')!important;}</style>');
      	}
      })(jQuery, 'bckg');
