window.addEvent('domready', function() {
    $$('.horizontal_nav a').each(function(el) {
		if(el.href == window.location) {
			el.addClass('selected');
		}
	});
});


window.addEvent('domready', function() {
	if($('email')) {
		$('email').addEvents({
			'focus': function() { if(this.value == 'Enter your email here') this.value = ''; },
			'blur': function() { if(this.value == '') this.value='Enter your email here'; }
		});
	}
    if($('startDate')) {
		$('startDate').addEvents({
        	'focus': function() { if(this.value == 'YYYY/MM/DD') this.value = ''; },
	        'blur': function() { if(this.value == '') this.value='YYYY/MM/DD'; }
	   });
	}
	if($('endDate')) {
	    $('endDate').addEvents({
    	    'focus': function() { if(this.value == 'YYYY/MM/DD') this.value = ''; },
        	'blur': function() { if(this.value == '') this.value='YYYY/MM/DD'; }
	   });
	}
});