load_content = function(slug) {
	jQuery.ajax({
		type: "GET",
		cache: false,
		url: '/pages/ajax/' + slug + '.html',
		timeout: 15000,
		beforeSend: function(XMLHttpRequest){ },
		success: function(data, status){ jQuery('#center').html(data); },
		error: function(data, status){ },
		complete: function(data, status){ }
	});
}

jQuery('div').ifixpng();
