jQuery(document).ready(function() {
	jQuery('img.spacer-gif').each(function() {		
		//if(!jQuery.browser.mozilla || jQuery.browser.version.substr(0,3) != 1.9){
			var height = jQuery(this).attr('height');
			jQuery(this).next('br').replaceWith('');
			jQuery(this).replaceWith('<div class="spacer-gif" style="clear: both; height: ' + height + 'px;"></div>');		
		//}
	});	
});