$(document).ready(function() {
	/* Allow for CSS-selectable textboxes */
	$(":text").addClass("text");

	/* Set up our formatted <hr>s */
	$("hr").replaceWith("<div class='hr'><br></div>");	
	
	/* Set up rounded corners */
	$(".styled_box").corners("20px");
	
	/* Support for PNG transparencies */
	$(document).pngFix();
	
	$('#masthead .fade').crossSlide({
	  sleep: 5,
	  fade: 1
	}, [
	  { src: '/images/mastheads/masthead1.jpg' },
	  { src: '/images/mastheads/masthead2.jpg' },
		{ src: '/images/mastheads/masthead3.jpg' },
		{ src: '/images/mastheads/masthead4.jpg' }
	]);
});


