/**
 * @author ZOOKY
 */

zooky.cookie = function() //----------CHECK F COOKIE IS ENABLED
{
	if(!Cookie.isEnabled())
	{
		return false;
	}
	else
	{
		return true;
	}
}

zooky.log = function(output) //----------CHECK IF CONSOLE IS AVALABLE AND LOG A OUTPUT
{
	if(typeof (console) === 'undefined')
	{
		alert(output);
	}
	else
	{
		console.log(output);
	}
}