// JavaScript Document
      $(document).ready(function() {
        $('#Window1').AeroWindow({
          WindowTitle:          'Внимание! Акция!',
          WindowPositionTop:    40,
          WindowPositionLeft:   100,
          WindowWidth:          300,
          WindowHeight:         200,
          WindowAnimation:      'easeOutBounce'        
        });  
        $('#Firefoxapp').AeroWindow({
          WindowTitle:          'Внимание! Акция!',
          WindowPositionTop:    'center',
          WindowPositionLeft:   'center',
          WindowWidth:          600,
          WindowHeight:         350,
          WindowAnimation:      'easeOutCubic'
        });
        $('#Firefoxicon').click(function() {
          $('#Firefoxapp').AeroWindow({
            WindowTitle:          'Внимание! Акция!',
            WindowPositionTop:    'center',
            WindowPositionLeft:   'center',
            WindowWidth:          600,
            WindowHeight:         350,
            WindowAnimation:      'easeOutCubic'
          });
        });
        $('#Twittericon').click(function() {
          $('#Window2').AeroWindow({
            WindowTitle:          'jQuery Twitter',
            WindowPositionTop:    'center',
            WindowPositionLeft:   'center',
            WindowWidth:          750,
            WindowHeight:         500,
            WindowAnimationSpeed: 1000,
            WindowAnimation:      'easeOutCubic',
            WindowResizable:      true,
            WindowDraggable:      true,
            WindowMinimize:       false,
            WindowMaximize:       false,
            WindowClosable:       true
          });
        })
      });

