jQuery(document).ready(function(){
	if (!jQuery.browser.opera) {
		jQuery("img.home_pics").each(function() {
			jQuery(this).wrap('<span class="home_pics_rounded" />');
			var imgSrc = jQuery(this).attr("src");
			var imgHeight = jQuery(this).height();
			var imgWidth = jQuery(this).width();
			jQuery(this).parent()
				.css("background-image", "url(" + imgSrc + ")")
				.css("background-repeat","no-repeat")
				.css("height", imgHeight + "px")
				.css("width", imgWidth + "px");
			jQuery(this).remove();
		});
	}
});
