 /*!
 * @author Gproxy Design Inc.
 * @copyright (c) 2009, Gproxy Design Inc. All rights reserved.
 * @version 1.0
 *
 * Gproxy doesn't allow to copy or change this code without Gproxy authorization.
 * See http://www.gproxy.com/licenses/license01.pdf for the full license governing this code.
 */
 
 function redirectAfterPurchase(){
	var rExpThanks = new RegExp('(sc=4&category=thanks|sc\.4/category\.thanks)', 'gi');
	if (rExpThanks.exec(document.location.toString()) !== null) {
		$j(document).ready(function(){
			setTimeout("document.location.href='http://www.porthos.com/Porthos-Picks';",5000);	
		});
	}
 }
