﻿jQuery.fn.resizeComplete = function(fn, ms){
	var timer = null;
	this.resize(function() 
		{
		if (timer) 
			{
			clearTimeout(timer);
			}
		timer = setTimeout(fn,ms);
		});
}
