// JavaScript Document
window.addEvent('domready', function(){
									 
	slb = new SexyLightBox({ imagesdir: 'images/Slightbox',find:'news'});
	$$('#newsletter #nombre').addEvent('click',function(){
		if(this.get('value')== 'Nombre...')
			this.set('value','');
	});
	
	$$('#newsletter #correo').addEvent('click',function(){
		if(this.get('value')== 'email...')
			this.set('value','');
	});	
});