function ajaxLoader(evt, targ) {
	gElement = this;
	var baseUrl = 'http://84.32.130.210/';
	var url = targ.href;

	$('#main-container').load(url + '&ajax=1', function () {
	    $('#title-span')[0].innerHTML = targ.title;
	});

	return false;
}

function handleMenuClick(e) {
    e = (e || window.event);
    
    var targ = null;
	if (e.target) {
		targ = e.target;
	} else if (e.srcElement) {
		targ = e.srcElement;
	}
	
	var re = new RegExp(window.location.host, 'i');
	if (targ && targ.href.match(re)) {
	    e.preventDefault();
        ajaxLoader(e, targ);
	}
}

function initialize() {
    DragHandler.attach($('#main-title')[0], $('#window-container')[0]);
    $('#main-menu ul a').bind('click', handleMenuClick);
}

// jQuery
$(document).ready(initialize);

