var $j = jQuery.noConflict();
$j(function(){
	$j('#footerPopup').hide();
	$j(".parent").click(function(){
		$j('#footerPopup').slideToggle(function(){
			$j.scrollTo(
			$j('.parent'),{
				speed: 1000
				}
			);
			if( $j('#footerPopup').css("display") == "none"){
				$j(".parent").css("color","#003366");
			} else {
				$j(".parent").css("color","#FF002A");
			}
		});
	});
});
