// JavaScript Document

$(function() {
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var sclpos = 30;
				var scldurat = 1200;
				var targetOffset = target.offset().top - sclpos;
				$('html,body')
					.animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
				return false;
			}
		}
	});
});


$(document).ready(function(){ $("a#plus1").click(function () { $(".option1").slideToggle("fast"); }); });
$(document).ready(function(){ $("a#plus2").click(function () { $(".option2").slideToggle("fast"); }); });
$(document).ready(function(){ $("a#plus3").click(function () { $(".option3").slideToggle("fast"); }); });
$(document).ready(function(){ $("a#plus4").click(function () { $(".option4").slideToggle("fast"); }); });

