// Get the width of the outermost container div.

//when DOM is ready...
$(document).ready(function(){
	var getWidth = $('#slideout-wrap').width();
	
    // Add animation to side tab
		$('#slidetab').toggle(function(){
				//$(this).addClass("tabOpen");
				$('#slideout-wrap').animate({left: 0});
		},
		function() {
				$('#slideout-wrap').animate({left: -182});
				//$(this).removeClass("tabOpen");
		});
});