window.addEvent('domready', function() {
// buscardor AJAX								
$('searchkeywords').addEvent('submit', function(e) {
		e.stop();
		var log = $('search_result').empty().addClass('ajax-loading');
		this.set('send', {onComplete: function(response) { 
			log.removeClass('ajax-loading');
			log.addClass('search_result');
			log.set('html', response);			
		}});
		this.send();
	}); 
//CARRUSEL
/*
new SimpleCarousel($('slide-container'), $$('#slide-container div.slide'), $$('#slide-container a.button'), {
  rotateAction: 'click', 
  slideInterval: 2500,
  onShowSlide: function(){
    $$('#slide-container div.btnbot a.off img').each(function(button, index){
      button.src = button.src.replace('_on', '_off');
    });
    $$('#slide-container div.btnbot a.selected img').each(function(button, index){
      button.src = button.src.replace('_off','_on');
    });
  }
});
*/
// preloadimages
MM_preloadImages('images/ecj/print_over.gif', 'images/ecj/menu_hover.gif');
});
