	// toggle style extension
	$.fn.toggleStyle = function(style, value1, value2)
	{
		return this.each(function(){
			this.style[style] = (this.style[style] == value1) ? value2 : value1;
		});
	};
