

jQuery(document).ready(function() {

    $("#sneakpeak").scrollable({size: 1 }).circular().navigator();
	$(".popup[rel]").overlay();
	
	$(".extended").hide(); 
		  
	$("h3 a").click(function() {
		if($(this).is(".active")) {
			$(this).removeClass("active").parent().parent().find(".extended").slideUp("fast")
		} else {
			$(this).addClass("active").parent().parent().find(".extended").slideDown("fast");
		}
		return false;
	});


	$("#archive").hide(); 
	$('a#archive-toggle').click(function() {
		$(this).toggleClass("active");
	    $('#archive').slideToggle(400);
		    return false;
		  });

	$('a.email').nospam({ replaceText: true, filterLevel: 'low' });
	$('a.email-alt').nospam({ replaceText: false, filterLevel: 'low' });
	

});
