$.noConflict();
  jQuery(document).ready(function($) {
  // Code that uses jQuery's $ can follow here.
	$('#sticky-footer').append('<div id="close-footer">Hide</div>');
	$('#close-footer').live('click', function() {
		$('#sticky-footer').slideUp('slow', function() {
			$('.push').slideUp('slow');
		});
	});
	var $status = 'closed';
	if ( $status == 'closed') {
	$('#contact-numbers').mouseenter(function (){
		$status = 'open';
		$('#contact-numbers').animate({ width : '215px'}, 'fast', function(){
			$('#contact-numbers .content').fadeIn('fast');
			});
			$('#contact-numbers .hide').html('Hide');	
		});
	}
	
		$('#contact-numbers .hide').click(function () {
			if( $status == 'open' ) {		
				$('#contact-numbers .content').fadeOut('fast', function(){
					$('#contact-numbers').animate({ width : '15px'}, 'fast', function(){
					$status = 'closed';
					});
					
				});
				$('#contact-numbers .hide').html('<img src="http://www.newyorkfood.com/Images/contact.png"/>');
			}
		});
	
});
