window.addEvent('domready', function() {	
	$$('input.input').each(function(e) {
        e.addEvent('focus', function() {this.className = 'inputfocus' ;})
        e.addEvent('blur', function(e) {this.className = 'input' ;})
    }) ;
    
    $$('textarea.textarea').each(function(e) {
        e.addEvent('focus', function() {this.className = 'textareafocus' ;})
        e.addEvent('blur', function(e) {this.className = 'textarea' ;})
    }) ;
    
    $$('select.select').each(function(e) {
        e.addEvent('focus', function() {this.className = 'selectfocus' ;})
        e.addEvent('blur', function(e) {this.className = 'select' ;})
    }) ;
    
    var slideshow = new Slideshow('pictures', { 
      transition: 'fade', 
      auto: true, 
      autointerval: 2000,
      tween: { duration: 1000 }
    });
});
