var myrules = {
	'#search_box' : function(el){
		el.onfocus = function(){
			if(this.value=="Find a product or herb.") this.value = "";
		}
		el.onblur = function(){
			if(this.value=="") this.value = "Find a product or herb.";
		}
	},	
	 '#thmbs a' : function(element){
      element.onclick = function(){
		//n_path = replace(this.href,"&w=50&h=50", "&w=100&h=50");	
		$$('a#large_img img')[0].src = this.rel;	
	     $$('a#large_img img')[0].title = this.title + " (click for larger version)";
         $$('a#large_img img')[0].alt = this.title;
		 $('large_img').href = this.href;
         return false;
      }
    },
	'#more_pics' : function(element){
      element.onclick = function(){
		 Effect.toggle('more_pics_container', 'slide');
		 //Effect.SlideDown('more_pics_container');
         return false;
      }
    },
	'#large_img' : function(element){
	  element.onclick = function(){
		  var win = new Window({destroyOnClose:true, className:"alphacube", id:"largeImageWindow", width: 640, height:480, resizable:false, minimizable:false, maximizable:false, onClick: function(){top.Windows.close('largeImageWindow')}});
		  var path = $('large_img').href;
		  win.setHTMLContent("<center><img src='"+path+"' onClick=\"top.Windows.close('largeImageWindow')\" title='Click to close' /></center>");
		  win.showCenter();
		  win.setTitle($('large_img').alt);
		  return false;
	  }},
	'#zoom' : function(element){
	  element.onclick = function(){
		  var win = new Window({destroyOnClose:true, className:"alphacube", id:"largeImageWindow", width: 640, height:480, resizable:false, minimizable:false, maximizable:false, onClick: function(){top.Windows.close('largeImageWindow')}});
		  var path = $('large_img').href;
		  win.setHTMLContent("<center><img src='"+path+"' onClick=\"top.Windows.close('largeImageWindow')\" title='Click to close' /></center>");
		  win.showCenter();
		  win.setTitle($('large_img').alt);
		  return false;
	  }}
}
Behaviour.register(myrules);
/*Event.observe(window, 'load', function(){
		 $('more_pics_container').style.display="none";
	}, false);
*/
