

function Sxn_WritePosts(data)
{
   $("#sxn_posts").html(data[0]);
}


function Sxn_GetPosts(country,state,sexorient,npost,site)
{
   if (site == "G")
      url = "http://www.gaynection.com/";
   else
      url = "http://www.sexnection.com/";
   $.getJSON(url + "sxn_api.php?npost=" + npost + "&country=" + country + 
             "&state=" + state + "&sexorient=" + sexorient + "&jsoncallback=?",Sxn_WritePosts);
}

