$(document).ready(function() {
	
	$('body:not(.home) .exposed_items .vertical li').each(function() {
		$('.thumb', this).insertAfter($('.description h4', this));
	});
	
});