/**
 * @author dmenshyk
 *
 */


/**
 * Request form
 */

SF.ns('Office', {rules: {},
    messages: {}
});


SF.ns('Office',  function() {

    SF.addToDOMReady(function() {
      //
	$(".office-title").click(function() {
             if ($('.office-description', this).is(':visible')) {
		$('.office-description', this).hide();
		$('.office-more', this).removeClass('office-less');
	     }
             else if ($('.office-description', this).is(':hidden')) {
	        $('.office-description', this).show();
	        $('.office-more', this).addClass('office-less');
	     }
        });
	$('.office-title:first').click();
	$(".office-expand").click(function() {
             //
	    $('.office-description').show();
	    $('.office-more').addClass('office-less');
        });
	$(".office-collapse").click(function() {
             //
	    $('.office-description').hide();
	    $('.office-more').removeClass('office-less');
        });

	$(".office-title  .office-description").click(function(e) {
	    e.stopPropagation();
        });

    });
    
}());

