$(document).ready(function() {
       /* $('#Window1').AeroWindow({
          WindowTitle:          'Window 1 - Happy OutBounce',
          WindowPositionTop:    100,
          WindowPositionLeft:   200,
          WindowWidth:          300,
          WindowHeight:         200,
          WindowAnimation:      'easeOutBounce'        
        });  
        $('#Firefoxapp').AeroWindow({
          WindowTitle:          'FireFox',
          WindowPositionTop:    'center',
          WindowPositionLeft:   'center',
          WindowWidth:          700,
          WindowHeight:         500,
          WindowAnimation:      'easeOutCubic'
        });  */
        $('#count_down').click(function() {
			$('#main_mid_slice').hide();
			$('#main_mid_slice_hid').show();
			$('#count_down_app').show();
			
          $('#count_down_app').AeroWindow({
            WindowTitle:          '',
            WindowPositionTop:    'center',
            WindowPositionLeft:   'center',
            WindowWidth:          700,
            WindowHeight:         500,
            WindowAnimation:      'easeOutCubic'
			
          });
        });
        $('#Twittericon').click(function() {
          $('#Window2').AeroWindow({
            WindowTitle:          'jQuery Twitter',
            WindowPositionTop:    'center',
            WindowPositionLeft:   'center',
            WindowWidth:          550,
            WindowHeight:         300,
            WindowAnimationSpeed: 1000,
            WindowAnimation:      'easeOutCubic',
            WindowResizable:      true,
            WindowDraggable:      true,
            WindowMinimize:       false,
            WindowMaximize:       false,
            WindowClosable:       true
          });
        })
      });
