﻿$(function() {
	$("#nav").find("a[href='"+window.location.href+"']").each(function(){$(this).addClass("active")})
});$(function() {
    $('.slideform a').click(function(event){
        if ($('.slideform').hasClass('open')) {
            $('.slideform').animate({right:'-300px'},500,'easeInQuart').removeClass('open');
        } else {
            $('.slideform').animate({right:'0px'},400,'easeInOutCubic').addClass('open');
        }
    });
}); 
