/**
 * Created by JetBrains PhpStorm.
 * User: romiras
 * Date: 01.07.11
 * Time: 15:48
 * Размещаена логика показа выпадающего окна для кнопки Подписаться и диалога с подпиской на рассылку
 */

    function showPopupDispathes(){
           //setPositionDispathesPopup();
           if (jQuery('#dispathes-popup').css('display') == "none"){
               jQuery('#dispathes-popup').show();
               jQuery('#dispathes-share').addClass('b-share-popup_opened b-share-form-button_state_pressed');
           } else{
               jQuery('#dispathes-popup').hide();
               jQuery('#dispathes-share').removeClass('b-share-popup_opened b-share-form-button_state_pressed');
           }
       }

    function setPositionDispathesPopup(){
            //var position = jQuery('#dispathes-popup').position();
            //jQuery('#dispathes-popup').css('left', position.left-11).css('top', position.top);
            var position = jQuery('#dispathes-share').position();
            jQuery('#dispathes-popup').css('left', position.left-16).css('top', position.top+35);
       }

    function showDialog(){
        jQuery("#dispatches_popup").dialog({
            title: 'Подписка на информационные материалы',
            dialogClass: 'popup-dialog',
            resizable: false,
            draggable: false,
            modal: true,
            width: 203,
            height: 129
        });
    }

function initPopupDispatches(){
    jQuery('html').click(function() {
        if (jQuery('#dispathes-popup').css('display') != "none"){
             jQuery('#dispathes-popup').hide();
             jQuery('#dispathes-share').removeClass('b-share-popup_opened b-share-form-button_state_pressed');
        }
    });

    jQuery("#dispathes-share").click(function(event){
            setPositionDispathesPopup();
            showPopupDispathes();
            event.stopPropagation();
    });
}

