$(document).ready(function(){
	
	$("input[name='_oohmun']").remove();
	
	$("img.popup").each(function(){
		
		var href = $(this).attr("src").replace('/lores/','/hires/');
		var title = $(this).attr("alt");
		$(this).wrap("<a></a>")
			.parent("a")
				.attr("href",href)
				.attr("title",title)
				.attr("rel","inpage")
				.addClass("thickbox")	
	});
	
	$("h2, p, a, li").each(function(){
		$(this).html($(this).html().replace(/&amp;/g,'<em class="amp">&amp;</em>'))
	});
	
	$("img[@src$=png], ul.gallery p, ul.sidegallery p,#head, #foot, #footwrapper, li.current a").pngfix();
	
	$("form#contact-form").submit(function() {

		var valid = true;		
		
		$(".req").each(function() {
			if ($(this).val() == '') {
				valid = false;
			}
 		});
		
		if (!valid) { alert('Please ensure all fields marked with a * are filled in.'); }

		return valid;
	});

});