// menu stuff for jquery
$(document).ready(function(){
	$(" #nav ul ").css({display: "none"}); // Opera Fix
	$(" #nav li").hover(
		function() {
			if($.browser.msie) $(this).children("ul").show();
			else $(this).children("ul").fadeIn(250);
		},
		function() {
			if($.browser.msie) $(this).children("ul").hide();
			else $(this).children("ul").fadeOut(250);
		}
	);
	
	$(".dd").hover(
		function() {
			var parent_id = $(this).siblings().attr("id");
			$(this).siblings().addClass(parent_id + '-active');
		},
		function() {
			var parent_id = $(this).siblings().attr("id");
			$(this).siblings().removeClass(parent_id + '-active');
		}
	);
	
	$(".email").each(function() {
		var email = $(this).html();
		var email_parts = email.split("||");
		var prefix = email_parts[1];
		var suffix = email_parts[0];
		var full_email = prefix + '@' + suffix;
		$(this).html('<a href="mailto:' + full_email + '" style="padding:0;">' + full_email + '</a>');
	});

	if($(".contactform").size() > 0 && $(".contactform").height() < 210) {
		$("#footer-wrapper").css('margin-top', -104);
	}


});
