jQuery(document).ready(function($) {
	$('.applyGroup').next('ul').hide(); 
	$('.applyGroup').click(function () { 
      $(this).next('ul').slideToggle(); 
    });
	
	$search_box = $("#search_box");
    $search_box.click(function() {
		if( $search_box.attr("value") == "search here!" ) {
			$search_box.attr("value", "");
		}
	});
	
	$("table.fDirectory td:contains('@')").each(function()
    {
            var text = $.trim($(this).text());
			var tEmail = text+'evansvilledayschool.org';
			var mEmail = '<a href=\"mailto:'+tEmail+'\">'+tEmail+'</a>';
//            var tEmail = "<a href="mailto:"evansvilledayschool.org</a>";
			$(this).html(mEmail);
    });
	$('table.fDirectory tr:odd').css('background-color', '#f5f5f5');
	
	$('li#menu-item-1469 > a').attr("target", "_blank");
	// $('.facdir .current_page_item a').contents().unwrap().before('&raquo; ').after(' &laquo;');
	
	
	
});
