// Use 'jQuery(function($) {' for inside WordPress blogs (without quotes)
$(function() {
	var open = false;
	//////////////
	/*$(function() {
	$('#footerSlideButton').hover(function () {
		$('#footerSlideContent').stop().slideToggle();
	});
	});*/
	////////////////
	$('#footerSlideButton').click(function() {
		if(open === false) {
			$('#footerSlideContent').animate({ height: '170px' });
			$(this).css('backgroundPosition', 'bottom left');
			open = true;
		} else {
			$('#footerSlideContent').animate({ height: '41px' });
			$(this).css('backgroundPosition', 'top left');
			open = false;
		}
	});
});

