﻿ $(document).ready(function() {

			$(".menu li").hover(function() {	//On hover...

				$(this).find("a").stop().animate({ 

					marginLeft: "10" //Find the span tag and move it up 40 pixels

				}, 250);

			} , function() { //On hover out...

				$(this).find("a").stop().animate({

					marginLeft: "0" //Move the span back to its original state (0px)

				}, 250);

			});

			

			$("#access li").hover(function() {	//On hover...

				$(this).find("a").stop().animate({ 

					marginLeft: "10" //Find the span tag and move it up 40 pixels

				}, 250);

			} , function() { //On hover out...

				$(this).find("a").stop().animate({

					marginLeft: "0" //Move the span back to its original state (0px)

				}, 250);

			});

			});

$(document).ready(function(){

	$(".toggle_container").hide();

	$("h3.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
	});

});
