var home = Class.create();
home.prototype = {
	initialize: function() {
		this.gestisciCerca();
		
//		this.gestisciAnnunci();
		
		this.gestisciSponsor();
		
		this.stonda();
	},	

	gestisciCerca: function() {
		var campo = $('cerca');
		campo.observe('focus', function() {campo.addClassName('selezionato')});
		campo.observe('blur', function() {campo.removeClassName('selezionato')});
	},	
	
	gestisciAnnunci: function() {
		$$('a.annuncio').each(function(ancora) {
			if (ancora.rel != '' && ancora.title != '') {
				new Tip(ancora, ancora.rel, {
					title: ancora.title,
					className: 'tipAnnuncio'
				});
				ancora.title = '';
			}
		});
	},
	
	gestisciSponsor: function() {
		$$('a.sponsor').each(function(ancora) {
			if (ancora.rel != '' && ancora.title != '') {
				new Tip(ancora, ancora.rel, {
					title: ancora.title,
					className: 'tipAnnuncio'
				});
				ancora.title = '';
			}
		});
	},
	
	stonda: function() {
		if (principale.browser != "safari") {
			Nifty("div#slogan", "big transparent fixed-height");
		}
		Nifty("div.dx", "big");
//		Nifty("h2.titolo.ricerca", "small right transparent");
		Nifty("h2.titolo_dx", "small right");
	}
}
