// Use 'jQuery(function($) {' for inside WordPress blogs (without quotes)
//Footer slide functions
$(function() {
	var open = false;
	$('#foot-close').click(function() {
		if(open === false) {
			$('#footerSlideContent').animate({ bottom: '0px' });
			//$(this).css('backgroundPosition', 'bottom left');
			open = true;
		} else {
			$('#footerSlideContent').animate({ bottom: '-135px' });
			//$(this).css('backgroundPosition', 'top left');
			open = false;
		}
	});
});

//Menu Left Slide Functions

$(function() {
	var mopen = false;
	$('#menu-close').click(function() {
		if(mopen === false) {
			$('#main-menu').animate({ left: '0px' });
			//$(this).css('backgroundPosition', 'bottom left');
			mopen = true;
		} else {
			$('#main-menu').animate({ left: '-260px' });
			//$(this).css('backgroundPosition', 'top left');
			mopen = false;
		}
	});
});

