// JavaScript Document

 jQuery(document).ready(function()
	{
		jQuery('.donateBtn').toggle(
		function()
		{
			jQuery('.sliderContent').animate({ width: "show" }, "fast");
			jQuery('.donateBtn').animate({ right: "306px" }, "fast");
			},
		function()
		{
			jQuery('.sliderContent').animate({ width: "hide" }, "fast");
			jQuery('.donateBtn').animate({ right: "0px" }, "fast");
		}
		);
	});