var $j = jQuery.noConflict();

$j(function(){

	var open = false;
	$j('#footerSlideButton').click(function ()  {
		if(open === false) {
			$j('#footerSlideContent').animate({ height: '300px' });
			$j(this).css('backgroundPosition', 'bottom left');
			open = true;
		} else {
			$j('#footerSlideContent').animate({ height: '0px' });
			$j(this).css('backgroundPosition', 'top left');
			open = false;
		}
	});
});
