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

