/**
 * Useful Functions
 *
 * A collection of solutions to common problems with the help of jQuery!
 *
 * -----------------------------------------------------------
 *
 * @author			Barry Malcolm Harley
 * @version			1.0.0
 * @copyright		Copyright (c) 2011 ZootAlore! Creative
 *
 */

/**
 * Redirect
 * A simple redirect function with time delay.
 *
 * @author 	Barry Malcolm Harley
 * @param	string
 * @param	int
 * @return 	void
 */ 
function redirect(url, time)
{
	setTimeout(function() { window.location.href = url; }, time); 
}

/**
 * Hide Watermarks
 *
 * @author 	Barry Malcolm Harley
 * @return 	void
 */ 
function hide_watermarks() 
{
   $.Watermark.HideAll();
}


