
jQuery(document).ready(function() {
	var curhref = location.href;
	if (-1 != curhref.indexOf("#"))
	{
		var href = curhref.replace("http://"+host+"#", "");
		href = href.replace(".php", "_.php");
		if ("" != href)
			jQuery("#content").load(href);
	}
	
	jQuery(".mailinglist a").click(function() { 
		var animate = jQuery("#joinEmailList .animate");
		if (jQuery.browser.msie)
		{
		}
		else if (0 == animate.filter(":animated").length)
		{
			if (10 < animate.css("height").replace("px",""))
				animate.animate({height:"0px"}, 500, function() {});
			else
				animate.animate({height:"20px"}, 500, function() {});
		}
		return false;
	});
});