$(document).ready(function(){
	FixActionMenuBorder();
	
	$(".ContactFormRequired").each(function() { $(this).appendTo($(this).parent().parent().next("td")); });
	$(".EML_FieldError").removeClass("EML_FieldError").addClass("FieldError");
	
	FadeInImages();
	
	$(".GalleryImages a").fancybox();
	
	$(".GalleryImages a").hover(function() {
		$(this).find("img").animate({ opacity: '1' });
	}, function() {
		$(this).find("img").animate({ opacity: '0.8' });
	});
	
	$(".GalleryAlbums li").click(function() { window.location = $(".AlbumLink", this).attr("href"); });
	
	$(".FancyLink").fancybox({ 'type':'iframe', 'width':'80%', 'height':'80%' });
});

function FixActionMenuBorder()
{
	$(".dnnActionMenuBorder").each(function() {
		$(this).remove();
	});
}

function FadeInImages()
{
	$(".GalleryImages img.hidden:first").animate({ opacity: '0.8' }).removeClass("hidden");
	window.setTimeout("FadeInImages()", 100);
}
