jQuery(document).ready(function(){

			/* -------------------------------------------

				IMAGES FOR SLIDESHOW

			--------------------------------------------*/


			/*list the background images for each slide*/
			var images = ["/images/slideshow/story1/1.jpg","/images/slideshow/story2/2.jpg","/images/slideshow/story3/3.jpg"];

			/*list the header images for each slide. This must be a .jpg*/
			var title = ["#","#","#"];
			/*please include alt text for these titles*/
			var titleAlt = ["#","#","#"];

			/*list the copy images for each slide. This must be a .jpg*/
			var text = ["#","#","#"];
			/*please include alt text for each copy*/
			var textAlt = ["#","#","#"];

			/*list the link images for each slide. This must be a .jpg*/
			var linky = ["#","#","#"];
			/*url for the link*/
            var linkyTo = [
                "/templates/products/sp_nonshaded.tmpl?CATEGORY_ID=CAT30291&PRODUCT_ID=PROD100683&cm_re=February-_-Rotation1-_-RegeneratingCollectionToSPP",
                "/templates/products/mpp.tmpl?CATEGORY_ID=CAT5580&cm_re=February-_-Rotation2-_-FourTextures",
                "/winter/?cm_re=February-_-Rotation3-_-WinterSkincare"
            ];
			/*Please include alt text for each link*/
			var linkyAlt = ["#","#","#"];

			/* -------------------------------------------

				IMAGES FOR MERCH WINDOWS

			--------------------------------------------*/

			/*these are the images that slide up*/
			var merchLink = ["/images/slideshow/merch1/link.png", "/images/slideshow/merch2/link.png", "/images/slideshow/merch3/link.png"];
			/*please include alt text for these images */
			var merchLinkAlt = ["Complimentary courier delivery &amp; an introductory skincare treatment with every order", "Creme de la Mer for a lifetime", "images/merch1/link.png"];

			/*these are the link images*/
			var merchMain = ["images/slideshow/merch1/main.png", "images/slideshow/merch2/main.png", "images/slideshow/merch3/main.png"];
			/*please provide alt text for these images*/
			var merchMainAlt = ["Complimentary Services", "World Oceams Day 2011", "The Essentials"];
			/*these are the URLs for each link*/
            var merchUrl = ["/exclusives/online_benefits.tmpl?cm_re=February-_-Popup1-_-ComplimentaryServices", "/moisturisers/?cm_re=February-_-Popup2-_-BeyondMiraculous", "/sitelets/regeneratingserum/?cm_re=February-_-Popup3-_-RegeneratingCollection"]




			var settings = {
				'speed' : "3000",
				'images' : images,
				'title' : title,
				'text' : text,
				'linky': linky,
				'titleAlt': titleAlt,
				'textAlt': textAlt,
				'linkyAlt': linkyAlt,
				'linkyTo': linkyTo
			}

			var slideSettings = {
			'merchLink' : merchLink,
			'merchLinkAlt' : merchLinkAlt,
			'merchMain' : merchMain,
			'merchMainAlt' : merchMainAlt,
			'merchUrl' : merchUrl
			}

			jQuery('#banner_rotate').scrollimage(settings);




			slide(slideSettings);



		});

