//flash replace

if(typeof sIFR == "function"){	
	sIFR.bHideBrowserText = true;
    sIFR.replaceElement("#search-popular-hdr h1", named({sFlashSrc: "http://images.marthastewart.com/images/assets/flash/fonts/archer.swf", sColor: "#FFFFFF", sWmode: "transparent"}));
    sIFR.replaceElement("#advanced_search_quicklinks-hdr h1", named({sFlashSrc: "http://images.marthastewart.com/images/assets/flash/fonts/archer.swf", sColor: "#FFFFFF", sWmode: "transparent"}));
		sIFR.bHideBrowserText = true;
    sIFR.replaceElement("#search-col2-featured-hdr H1", named({sFlashSrc: "http://images.marthastewart.com/images/assets/flash/fonts/archer.swf", sColor: "#EA6411", sWmode: "transparent"}));    
    sIFR.replaceElement("#search-col2-resources-hdr H1", named({sFlashSrc: "http://images.marthastewart.com/images/assets/flash/fonts/archer.swf", sColor: "#EA6411", sWmode: "transparent"}));       
    sIFR.replaceElement("#search-macys-spotlight H1", named({sFlashSrc: "http://images.marthastewart.com/images/assets/flash/fonts/archer.swf", sColor: "#EA6411", sWmode: "transparent"}));           
}

//featured gallery 

			var photoGalleryCounter = 0;
			var photoGalleryTotal = 5;
	
			function photoGallery(dir) {	 

			if(photoGallery != 0) {
			
				//move left
				if(dir != 0) {
					if(photoGalleryCounter == 0) { $('search-featured_group2').style.left = '405px' }
					//reset the photo containers and the counter 
					if(photoGalleryCounter == (photoGalleryTotal-(photoGalleryTotal*2))) { 
						$('search-featured_group1').style.left = '0px'; 
						$('search-featured_group2').style.left = '405px';
						photoGalleryCounter = 0}	
							photoGalleryCounter = photoGalleryCounter -1;
							Effect.MoveBy( 'search-featured_group1', 0, -81, { 
							beforeStart: function() { disablepGalleryBtns(0); }, afterFinish: function() { disablepGalleryBtns(1); }, duration:1} ); 
							Effect.MoveBy( 'search-featured_group2', 0, -81, {duration:1} );
										
					} else { 
					
					//move right
					if(photoGalleryCounter == 0) { $('search-featured_group2').style.left = '-405px'; }
					//reset the photo containers and the counter 
					if(photoGalleryCounter == photoGalleryTotal) { 
						$('search-featured_group1').style.left = '0px'; 
						$('search-featured_group2').style.left = '-405px';
						photoGalleryCounter = 0}
							photoGalleryCounter = photoGalleryCounter +1;
							Effect.MoveBy( 'search-featured_group1', 0, 81, { 
							beforeStart: function() { disablepGalleryBtns(0); }, afterFinish: function() { disablepGalleryBtns(1); }, duration:1} ); 
							Effect.MoveBy( 'search-featured_group2', 0, 81, {duration:1} ); 
					}
				}
			}
	
			//this function deactivates button while photo gallery is moving
			function disablepGalleryBtns(active) {	
				if(active == 0) { 
					$('search-featured_images').style.width = '239px';
					$('search-featured_images').style.clip = 'rect(auto, auto, auto, 3px)';
					$('search-featured_prev').onclick =  null;
					$('search-featured_next').onclick =  null }
				if(active == 1) { 
					$('search-featured_images').style.width = '243px';
					$('search-featured_images').style.clip = 'rect(auto auto auto auto)';
					$('search-featured_prev').onclick =  photoGallery;
					$('search-featured_next').onclick =  new Function("photoGallery("+0+")");
					}
			}


function searchHelpInit() {
	if(!$('search_help_list')) return false;
	var searchList = $("search_help_list").getElementsByTagName("li")
	for(var i=0; i<searchList.length; i++) {
		searchList[i].onmouseover = function() {
		var whichBubble = this.getAttribute("id"); 
		this.style.backgroundPosition = "0 0"
		$(whichBubble + '_bubble').style.visibility = "visible";
		}
		searchList[i].onmouseout = function() {
		this.style.backgroundPosition = "-2000px 0"
		var whichBubble = this.getAttribute("id"); 
		$(whichBubble + '_bubble').style.visibility = "hidden";
		}
	}
}

addLoadEvent(searchHelpInit);
	

