$(document).ready(
	function() {
	  $('.windowOpen23').bind(
			'click',
			function() {
			  if ($('#window23').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window23',
						  className: 'transferer2_23',
						  duration: 400,
						  complete: function() {
						    $('#window23').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose23').bind(
			'click',
			function() {
			  $('#window23').TransferTo(
					{
					  to: 'windowOpen23',
					  className: 'transferer2_23',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin23').bind(
			'click',
			function() {
			  $('#windowContent23').SlideToggleUp(300);
			  $('#windowBottom23, #windowBottomContent23').animate({ height: 10 }, 300);
			  $('#window23').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize23').hide();
			  $('#windowMax23').show();
			}
		);
	  $('#windowMax23').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent23'));
			  $('#windowContent23').SlideToggleUp(300);
			  $('#windowBottom23, #windowBottomContent23').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window23').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin23, #windowResize23').show();
			}
		);
	  $('#window23').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop23',
			  handlers: {
			    se: '#windowResize23'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom23, #windowBottomContent23').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent23').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window23').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen22').bind(
			'click',
			function() {
			  if ($('#window22').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window22',
						  className: 'transferer2_22',
						  duration: 400,
						  complete: function() {
						    $('#window22').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose22').bind(
			'click',
			function() {
			  $('#window22').TransferTo(
					{
					  to: 'windowOpen22',
					  className: 'transferer2_22',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin22').bind(
			'click',
			function() {
			  $('#windowContent22').SlideToggleUp(300);
			  $('#windowBottom22, #windowBottomContent22').animate({ height: 10 }, 300);
			  $('#window22').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize22').hide();
			  $('#windowMax22').show();
			}
		);
	  $('#windowMax22').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent22'));
			  $('#windowContent22').SlideToggleUp(300);
			  $('#windowBottom22, #windowBottomContent22').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window22').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin22, #windowResize22').show();
			}
		);
	  $('#window22').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop22',
			  handlers: {
			    se: '#windowResize22'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom22, #windowBottomContent22').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent22').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window22').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen19').bind(
			'click',
			function() {
			  if ($('#window19').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window19',
						  className: 'transferer2_19',
						  duration: 400,
						  complete: function() {
						    $('#window19').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose19').bind(
			'click',
			function() {
			  $('#window19').TransferTo(
					{
					  to: 'windowOpen19',
					  className: 'transferer2_19',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin19').bind(
			'click',
			function() {
			  $('#windowContent19').SlideToggleUp(300);
			  $('#windowBottom19, #windowBottomContent19').animate({ height: 10 }, 300);
			  $('#window19').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize19').hide();
			  $('#windowMax19').show();
			}
		);
	  $('#windowMax19').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent19'));
			  $('#windowContent19').SlideToggleUp(300);
			  $('#windowBottom19, #windowBottomContent19').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window19').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin19, #windowResize19').show();
			}
		);
	  $('#window19').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop19',
			  handlers: {
			    se: '#windowResize19'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom19, #windowBottomContent19').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent19').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window19').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen21').bind(
			'click',
			function() {
			  if ($('#window21').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window21',
						  className: 'transferer2_21',
						  duration: 400,
						  complete: function() {
						    $('#window21').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose21').bind(
			'click',
			function() {
			  $('#window21').TransferTo(
					{
					  to: 'windowOpen21',
					  className: 'transferer2_21',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin21').bind(
			'click',
			function() {
			  $('#windowContent21').SlideToggleUp(300);
			  $('#windowBottom21, #windowBottomContent21').animate({ height: 10 }, 300);
			  $('#window21').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize21').hide();
			  $('#windowMax21').show();
			}
		);
	  $('#windowMax21').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent21'));
			  $('#windowContent21').SlideToggleUp(300);
			  $('#windowBottom21, #windowBottomContent21').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window21').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin21, #windowResize21').show();
			}
		);
	  $('#window21').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop21',
			  handlers: {
			    se: '#windowResize21'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom21, #windowBottomContent21').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent21').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window21').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen20').bind(
			'click',
			function() {
			  if ($('#window20').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window20',
						  className: 'transferer2_20',
						  duration: 400,
						  complete: function() {
						    $('#window20').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose20').bind(
			'click',
			function() {
			  $('#window20').TransferTo(
					{
					  to: 'windowOpen20',
					  className: 'transferer2_20',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin20').bind(
			'click',
			function() {
			  $('#windowContent20').SlideToggleUp(300);
			  $('#windowBottom20, #windowBottomContent20').animate({ height: 10 }, 300);
			  $('#window20').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize20').hide();
			  $('#windowMax20').show();
			}
		);
	  $('#windowMax20').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent20'));
			  $('#windowContent20').SlideToggleUp(300);
			  $('#windowBottom20, #windowBottomContent20').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window20').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin20, #windowResize20').show();
			}
		);
	  $('#window20').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop20',
			  handlers: {
			    se: '#windowResize20'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom20, #windowBottomContent20').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent20').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window20').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen18').bind(
			'click',
			function() {
			  if ($('#window18').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window18',
						  className: 'transferer2_18',
						  duration: 400,
						  complete: function() {
						    $('#window18').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose18').bind(
			'click',
			function() {
			  $('#window18').TransferTo(
					{
					  to: 'windowOpen18',
					  className: 'transferer2_18',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin18').bind(
			'click',
			function() {
			  $('#windowContent18').SlideToggleUp(300);
			  $('#windowBottom18, #windowBottomContent18').animate({ height: 10 }, 300);
			  $('#window18').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize18').hide();
			  $('#windowMax18').show();
			}
		);
	  $('#windowMax18').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent18'));
			  $('#windowContent18').SlideToggleUp(300);
			  $('#windowBottom18, #windowBottomContent18').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window18').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin18, #windowResize18').show();
			}
		);
	  $('#window18').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop18',
			  handlers: {
			    se: '#windowResize18'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom18, #windowBottomContent18').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent18').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window18').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen17').bind(
			'click',
			function() {
			  if ($('#window17').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window17',
						  className: 'transferer2_17',
						  duration: 400,
						  complete: function() {
						    $('#window17').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose17').bind(
			'click',
			function() {
			  $('#window17').TransferTo(
					{
					  to: 'windowOpen17',
					  className: 'transferer2_17',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin17').bind(
			'click',
			function() {
			  $('#windowContent17').SlideToggleUp(300);
			  $('#windowBottom17, #windowBottomContent17').animate({ height: 10 }, 300);
			  $('#window17').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize17').hide();
			  $('#windowMax17').show();
			}
		);
	  $('#windowMax17').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent17'));
			  $('#windowContent17').SlideToggleUp(300);
			  $('#windowBottom17, #windowBottomContent17').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window17').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin17, #windowResize17').show();
			}
		);
	  $('#window17').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop17',
			  handlers: {
			    se: '#windowResize17'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom17, #windowBottomContent17').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent17').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window17').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen16').bind(
			'click',
			function() {
			  if ($('#window16').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window16',
						  className: 'transferer2_16',
						  duration: 400,
						  complete: function() {
						    $('#window16').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose16').bind(
			'click',
			function() {
			  $('#window16').TransferTo(
					{
					  to: 'windowOpen16',
					  className: 'transferer2_16',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin16').bind(
			'click',
			function() {
			  $('#windowContent16').SlideToggleUp(300);
			  $('#windowBottom16, #windowBottomContent16').animate({ height: 10 }, 300);
			  $('#window16').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize16').hide();
			  $('#windowMax16').show();
			}
		);
	  $('#windowMax16').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent16'));
			  $('#windowContent16').SlideToggleUp(300);
			  $('#windowBottom16, #windowBottomContent16').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window16').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin16, #windowResize16').show();
			}
		);
	  $('#window16').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop16',
			  handlers: {
			    se: '#windowResize16'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom16, #windowBottomContent16').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent16').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window16').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen15').bind(
			'click',
			function() {
			  if ($('#window15').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window15',
						  className: 'transferer2_15',
						  duration: 400,
						  complete: function() {
						    $('#window15').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose15').bind(
			'click',
			function() {
			  $('#window15').TransferTo(
					{
					  to: 'windowOpen15',
					  className: 'transferer2_15',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin15').bind(
			'click',
			function() {
			  $('#windowContent15').SlideToggleUp(300);
			  $('#windowBottom15, #windowBottomContent15').animate({ height: 10 }, 300);
			  $('#window15').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize15').hide();
			  $('#windowMax15').show();
			}
		);
	  $('#windowMax15').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent15'));
			  $('#windowContent15').SlideToggleUp(300);
			  $('#windowBottom15, #windowBottomContent15').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window15').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin15, #windowResize15').show();
			}
		);
	  $('#window15').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop15',
			  handlers: {
			    se: '#windowResize15'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom15, #windowBottomContent15').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent15').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window15').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen12').bind(
			'click',
			function() {
			  if ($('#window12').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window12',
						  className: 'transferer2_12',
						  duration: 400,
						  complete: function() {
						    $('#window12').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose12').bind(
			'click',
			function() {
			  $('#window12').TransferTo(
					{
					  to: 'windowOpen12',
					  className: 'transferer2_12',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin12').bind(
			'click',
			function() {
			  $('#windowContent12').SlideToggleUp(300);
			  $('#windowBottom12, #windowBottomContent12').animate({ height: 10 }, 300);
			  $('#window12').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize12').hide();
			  $('#windowMax12').show();
			}
		);
	  $('#windowMax12').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent12'));
			  $('#windowContent12').SlideToggleUp(300);
			  $('#windowBottom12, #windowBottomContent12').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window12').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin12, #windowResize12').show();
			}
		);
	  $('#window12').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop12',
			  handlers: {
			    se: '#windowResize12'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom12, #windowBottomContent12').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent12').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window12').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen10').bind(
			'click',
			function() {
			  if ($('#window10').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window10',
						  className: 'transferer2_10',
						  duration: 400,
						  complete: function() {
						    $('#window10').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose10').bind(
			'click',
			function() {
			  $('#window10').TransferTo(
					{
					  to: 'windowOpen10',
					  className: 'transferer2_10',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin10').bind(
			'click',
			function() {
			  $('#windowContent10').SlideToggleUp(300);
			  $('#windowBottom10, #windowBottomContent10').animate({ height: 10 }, 300);
			  $('#window10').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize10').hide();
			  $('#windowMax10').show();
			}
		);
	  $('#windowMax10').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent10'));
			  $('#windowContent10').SlideToggleUp(300);
			  $('#windowBottom10, #windowBottomContent10').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window10').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin10, #windowResize10').show();
			}
		);
	  $('#window10').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop10',
			  handlers: {
			    se: '#windowResize10'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom10, #windowBottomContent10').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent10').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window10').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen9').bind(
			'click',
			function() {
			  if ($('#window9').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window9',
						  className: 'transferer2_9',
						  duration: 400,
						  complete: function() {
						    $('#window9').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose9').bind(
			'click',
			function() {
			  $('#window9').TransferTo(
					{
					  to: 'windowOpen9',
					  className: 'transferer2_9',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin9').bind(
			'click',
			function() {
			  $('#windowContent9').SlideToggleUp(300);
			  $('#windowBottom9, #windowBottomContent9').animate({ height: 10 }, 300);
			  $('#window9').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize9').hide();
			  $('#windowMax9').show();
			}
		);
	  $('#windowMax9').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent9'));
			  $('#windowContent9').SlideToggleUp(300);
			  $('#windowBottom9, #windowBottomContent9').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window9').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin9, #windowResize9').show();
			}
		);
	  $('#window9').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop9',
			  handlers: {
			    se: '#windowResize9'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom9, #windowBottomContent9').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent9').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window9').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen8').bind(
			'click',
			function() {
			  if ($('#window8').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window8',
						  className: 'transferer2_8',
						  duration: 400,
						  complete: function() {
						    $('#window8').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose8').bind(
			'click',
			function() {
			  $('#window8').TransferTo(
					{
					  to: 'windowOpen8',
					  className: 'transferer2_8',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin8').bind(
			'click',
			function() {
			  $('#windowContent8').SlideToggleUp(300);
			  $('#windowBottom8, #windowBottomContent8').animate({ height: 10 }, 300);
			  $('#window8').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize8').hide();
			  $('#windowMax8').show();
			}
		);
	  $('#windowMax8').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent8'));
			  $('#windowContent8').SlideToggleUp(300);
			  $('#windowBottom8, #windowBottomContent8').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window8').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin8, #windowResize8').show();
			}
		);
	  $('#window8').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop8',
			  handlers: {
			    se: '#windowResize8'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom8, #windowBottomContent8').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent8').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window8').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen7').bind(
			'click',
			function() {
			  if ($('#window7').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window7',
						  className: 'transferer2_7',
						  duration: 400,
						  complete: function() {
						    $('#window7').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose7').bind(
			'click',
			function() {
			  $('#window7').TransferTo(
					{
					  to: 'windowOpen7',
					  className: 'transferer2_7',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin7').bind(
			'click',
			function() {
			  $('#windowContent7').SlideToggleUp(300);
			  $('#windowBottom7, #windowBottomContent7').animate({ height: 10 }, 300);
			  $('#window7').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize7').hide();
			  $('#windowMax7').show();
			}
		);
	  $('#windowMax7').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent7'));
			  $('#windowContent7').SlideToggleUp(300);
			  $('#windowBottom7, #windowBottomContent7').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window7').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin7, #windowResize7').show();
			}
		);
	  $('#window7').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop7',
			  handlers: {
			    se: '#windowResize7'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom7, #windowBottomContent7').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent7').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window7').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);

$(document).ready(
	function() {
	  $('.windowOpen6').bind(
			'click',
			function() {
			  if ($('#window6').css('display') == 'none') {
			    $(this).TransferTo(
						{
						  to: 'window6',
						  className: 'transferer2_6',
						  duration: 400,
						  complete: function() {
						    $('#window6').show();
						  }
						}
					);
			  }
			  this.blur();
			  return false;
			}
		);
	  $('#windowClose6').bind(
			'click',
			function() {
			  $('#window6').TransferTo(
					{
					  to: 'windowOpen6',
					  className: 'transferer2_6',
					  duration: 400
					}
				).hide();
				$("#transferHelper").hide();
			}
		);
	  $('#windowMin6').bind(
			'click',
			function() {
			  $('#windowContent6').SlideToggleUp(300);
			  $('#windowBottom6, #windowBottomContent6').animate({ height: 10 }, 300);
			  $('#window6').animate({ height: 40 }, 300).get(0).isMinimized = true;
			  $(this).hide();
			  $('#windowResize6').hide();
			  $('#windowMax6').show();
			}
		);
	  $('#windowMax6').bind(
			'click',
			function() {
			  var windowSize = $.iUtil.getSize(document.getElementById('windowContent6'));
			  $('#windowContent6').SlideToggleUp(300);
			  $('#windowBottom6, #windowBottomContent6').animate({ height: windowSize.hb + 13 }, 300);
			  $('#window6').animate({ height: windowSize.hb + 43 }, 300).get(0).isMinimized = false;
			  $(this).hide();
			  $('#windowMin6, #windowResize6').show();
			}
		);
	  $('#window6').Resizable(
			{
			  minWidth: 200,
			  minHeight: 60,
			  maxWidth: 700,
			  maxHeight: 400,
			  dragHandle: '#windowTop6',
			  handlers: {
			    se: '#windowResize6'
			  },
			  onResize: function(size, position) {
			    $('#windowBottom6, #windowBottomContent6').css('height', size.height - 33 + 'px');
			    var windowContentEl = $('#windowContent6').css('width', size.width - 25 + 'px');
			    if (!document.getElementById('window6').isMinimized) {
			      windowContentEl.css('height', size.height - 48 + 'px');
			    }
			  }
			}
		);
	}
);
