jQuery.noConflict();
jQuery(document).ready(function() {

  jQuery('#contacts-but').click(function() {
    if (jQuery(this).parent().hasClass('contact-none')) {
      jQuery(this).children('span').addClass('ac');
      jQuery(this).parent().css({ 'top':'-110px' });
      jQuery(this).parent().removeClass('contact-none');
      jQuery(this).parent().animate({ 'top':'0px' }, 500);
    } else {
      jQuery(this).parent().animate({ 'top':'-110px' }, 500, '', function() {
        jQuery(this).addClass('contact-none');
        jQuery(this).css({ 'top':'0px' });
        jQuery('#contacts-but').children('span').removeClass('ac');
      });
    }
    return false;
  });
  
});
