//wrap div class centre around every img tag
$(document).ready(function(){
$("img")
.wrap("<div class='centre'>" +
"</div>");
});