


jQuery.fn.bloooming_roundPic = function(num){

	this.each(function(){
		
		// use this only for mozilla
		if ($.browser.mozilla) {
		
			var w = $(this).width();
			var h = $(this).height();
			var pic = $(this).attr('src');
			
			$(this).after('<div class="rounded" />');
			$(this).next('.rounded').width(w).height(h);
			$(this).next('.rounded').css('background','url('+pic+') top left no-repeat');
			$(this).hide();
		
		}// mozilla
	
	});




}


		

