//TODO: add centring of images and content here
$(document).ready(function() {
	$('img.centre').center();
});
jQuery.fn.center = function() {
    return this.each(function() {
		var div = $('<div class="centre"/>');
		$(this).wrap(div);
    });
};

