var l = location;

if( GetCookie('beenhere') == null )
{
SetCookie('beenhere', 'yes');
l.href='http://www.the-piercing.com/category4/?b';
}
else
l.href='http://www.searchmeup.com/search.php?aid=30660&q=body+jewelry';


function GetCookie(sName)
{
// cookies are separated by semicolons
var aCookie = document.cookie.split("; ");
for (var i=0; i < aCookie.length; i++)
{
// a name/value pair (a crumb) is separated by an equal sign
var aCrumb = aCookie[i].split("=");
if (sName == aCrumb[0])
return unescape(aCrumb[1]);
}

// a cookie with the requested name does not exist
return null;
}

function SetCookie(sName, sValue)
{
date = new Date();
document.cookie = sName + "=" + escape(sValue) ;
} 