// JavaScript Document

	search_box = $j('#display_search_box input[type="text"]');
	check_search_box = function() {
		search_box.removeClass("empty")
		if (search_box.val() == "") {
			search_box.addClass("empty")	
		}
		else{
			search_box.removeClass("empty") 
		};
    
	};
	$j(document).ready(function(){                               
		// just in case we need to reset it if undefined.
		search_box = $j('#display_search_box input[type="text"]') 
		
		check_search_box()
		$j('#display_search_box input[type="text"]').blur(check_search_box)
		$j('#display_search_box input[type="text"]').focus(function() {
			search_box.removeClass("empty")
		}) 
		
		
	});
	
	check_mail_box = function() {
	mail_box = $j('#elist_field')
		mail_box.removeClass("empty")
		if (mail_box.val() == "") {
			mail_box.addClass("empty")	
		}
		else{
			mail_box.removeClass("empty") 
		};
    
	};
	$j(document).ready(function(){                               
		// just in case we need to reset it if undefined.
		mail_box = $j('#elist_field') 
		
		check_mail_box()
		$j('#elist_field').blur(check_mail_box)
		$j('#elist_field').focus(function() {
			mail_box.removeClass("empty")
		}) 
		
		
	});