jQuery(document).ready(function() {
	jQuery("#ads img").each(function(index) {	
		if (jQuery(this).width() > 0) {
			var img_width = jQuery(this).width();
			var img_height =  jQuery(this).height();
			var img_src = jQuery(this).attr('src');
			
			var a_tag = jQuery(this).parent();
			a_tag.attr('style', "background-image: url('" + img_src + "'); width: " + img_width + "px; height: " + img_height + "px;");
			a_tag.html('');
			
			jQuery("#ads a").corner("5px");
		}
	});

	jQuery("#ads img").load( function() {
		var img_width = jQuery(this).width();
		var img_height =  jQuery(this).height();
		var img_src = jQuery(this).attr('src');
		
		var a_tag = jQuery(this).parent();
		a_tag.attr('style', "background-image: url('" + img_src + "'); width: " + img_width + "px; height: " + img_height + "px;");
		a_tag.html('');
		
		jQuery("#ads a").corner("5px");
	});
});