$(document).ready(
	function() {

		$("body").addClass("dom");
 
		$("img").attr("title", "");

		$("input, textarea, button").focus(function() {
			$(this).addClass("focus");
		}).blur(function() {
			$(this).removeClass("focus");
		});

		$("#nav h2").wrapInner("<span></span>");

		// Accordion
		$(".accordion > .link-item, .accordion > dl dt").each(function() {
			$(this).wrapInner('<a href="#"></a>').children().click(function() {
				$(this).parent().toggleClass('open').nextAll("div:first, dd:first").toggleClass('hideme');
				return false;
			}).parent(":not(.open)").nextAll("div:first, dd:first").addClass('hideme');
		});

	}
);
