﻿
	//This slides the left bar to the left to reveal menu.

	$(document).ready(function(){
	//Full Box Sliding (Hidden to Visible)
	//Block in the stylesheet: 'Left' indicates the position of left border of the open slider.
	$('.block').hover(function(){
	//Slider in the stylesheet: 'Left' indicates the position of the left border of the closed slider (how far right the box slides).  Change in stylesheet and in script below.
		$(".slider", this).stop().animate({left:'0px'},{queue:false,duration:360});
		}, function() {
		$(".slider", this).stop().animate({left:'240px'},{queue:false,duration:360});
		});	     
     });


