

$(document).ready(function() {

	$("div#login p").click(function(){
		$("div#login").slideToggle("slow");
	});
	$("div#standardmenu li.loginboxopen").click(function(){
		$("div#login").slideToggle("slow");
	});

	$("div.mm-forum-list h1").click(function(){
		$(this).parent().find("dl").slideToggle("fast");
		$(this).toggleClass("act");
	});


});


/* -----------------------------------
   rotating home page items
   ----------------------------------- */
var image_count;
var current_image=0;

$(document).ready(function(){
  image_count = $("div.slideshow .imagewrap").hide().size();
  $("div.slideshow .imagewrap:eq("+current_image+")").show();
  setInterval(feature_rotate,2500); //time in milliseconds

});


function feature_rotate() {
  old_image = current_image%image_count;
  new_image = ++current_image%image_count;
  $("div.slideshow .imagewrap:eq(" + new_image + ")").fadeIn("slow", function() {
    $("div.slideshow .imagewrap:eq(" + old_image + ")").fadeOut("slow");
  });
}