$(document).ready(function(){
	// get image, move it to background of div
	$('.home-callout-img').each(function(){
		$(this).css('background-image', 'url('+$(this).find('img').attr('src')+')');
		$(this).find('img').hide();
	});
	
	// round the corners
	$('.home-callout-img').corner("round 10px");
});