// open & close forum archive 
$(document).ready(function() {
  $("#forum_archive_switch").click(function(){
    $("#forum_archive").slideToggle(500)
    if ($.cookie("show-forum-archive-pref") == "expanded") {
      $("#forum_archive_switch").text("Click here to view");
      $.cookie("show-forum-archive-pref", "collapsed");
    } else {
      $.cookie("show-forum-archive-pref", "expanded");    
      $("#forum_archive_switch").text("Click here to hide");
    }
    return false;
  });
});

// toggle details on individual portfolio
$(document).ready(function(){
	//show all details
	$(".show_archive").click(function(){
		$(".forum-archive").slideToggle(500)
		return false;
	});
	// toggle the show/hide link
	$('span.toggle-on > a.show_archive').click(function(){
		$('span.toggle-off').show();
		$('span.toggle-on').hide();
		return false;
	});
	$('span.toggle-off > a.show_archive').click(function(){
		$('span.toggle-on').show();
		$('span.toggle-off').hide();
		return false;
	});
});
