/* CREDITS
 * ----------------------------------------------------------
 * Title:		WEBSITE - Main Javascript file
 * Author:		Inventis <info@inventis.be>
 * Date:		00/00/0000
 * Last Edit:	00/00/0000 [Author]
 * ----------------------------------------------------------
 * Inventis - Web Architects - We design the Web!
 * www.inventis.be
*/
window.addEvent('domready', function(){

	// Clear newsletter form
	if(link = $('newsletter_email')){
		link.addEvent('focus', function(){
			if(link.value == "e-mailadres")
				link.value = "";
		});
	}
});
