$(function(){
	$('#showcase').cycle({
		speed: 3000,
		timeout: 9000
	});

	$('a').click( function() { $(this).blur() } );

	$('#search_field').focus(function(){$(this).val('')})


    // $('.replace').load("http://www.monell.org/beta/employment.html");

    $('.replace').each(function(){
        $(this).replaceWith($('<div>').load($(this).attr('href')));
    });

});