﻿// JScript File
jQuery.fn.reverse = function()
{
	return this.pushStack(this.get().reverse(), arguments);
};
