$(document).ready(function(){$('#moveWinWord, #moveWinImport, #moveWinPreview').mousedown(function(e){SelectedItem = $('.'+$(this).attr('id'));SelectedX = parseInt(SelectedItem.css('left'));SelectedY = parseInt(SelectedItem.css('top'));if ($.browser.mozilla) event = e;MouseX = event.clientX;MouseY = event.clientY;document.onmousemove = Drag;document.onmouseup = Drop;});function Drag(e){if ($.browser.mozilla) event = e;SelectedItem.css('left', (SelectedX + (event.clientX - MouseX)));SelectedItem.css('top', (SelectedY + (event.clientY - MouseY)));return false;};function Drop(){document.onmousemove = null;document.onmouseup = null;};$.fn.center = function() {var w = $(window);this.css('position', 'absolute');this.css('top', (w.height() - this.height()) / 2 + w.scrollTop() + 'px');this.css('left', (w.width() - this.width()) / 2 + w.scrollLeft() + 'px');return this;};$.fn.delay = function(time, callback){$.fx.step.delay = function(){};return this.animate({delay:1}, time, callback);};$('.moveWin').center();});function getI18n(word){return lang[word];};
