// Load on page load
jQuery(function() {
	// Grab the image and put it on the background so we can have rounded corners
	var imageSource = jQuery("#monthly_observance_image img").attr('src');

	// Set the background
	jQuery("#monthly_observance_image")
		.css("background-image",'url('+imageSource+')')
		.css("background-position", 'right');
	
	// Hide the original background image
	jQuery("#monthly_observance_image img").hide();
});
