	$(document).ready(function() {
		$(".tabact").click( function() {
			if ($("#allornothing").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-336px"
					}, 500 );
				$("#tabimg").html('<img src="../../script/sliding_panel/icon_open.png" alt="open" />');
				$("#allornothing").show();
			} else {
				$("#slider").animate({ 
					marginTop: "0px"
					}, 500 );
				$("#tabimg").html('<img src="../../script/sliding_panel/icon_close.png" alt="close" />');
				$("#allornothing").hide();
			}
		});  
	});
