google.load("mootools", "1.2");
google.setOnLoadCallback(function() {
    $$('#right-nav input[type=text]').addEvent('click', function(ev){
	if(this.get('value') == 'Your email') this.set('value', '');
    });
    var sponsors = $$('#sponsors div.spondiv');
    sponsors.each(function(el) {
	corcarou = new GoodCarousel(el, {width: 190, height: 90, 
	    structure: {
		header:"span",
		data:".carousel-data",
		link:"a",
		img:"img"
	    }
	});
    });
});

