How do I build the following navigation menu using jQuery/JSON only ?

My JSON is as follows;
{
"general":{
"logo":"assets/images/logo.png",
"name" : "Company Name"
},
"navigation":[
{
"title":"Home",
"link":"index.html"
},
{
"title":"Products",
"link":"product.html",
"subnav":[
{
"title":"Webapps",
"link":"products/w.html"
},
{
"title":"Mobile Apps",
"link":"products/m.html"
}
]
}
]
}
I would avoid anything other than jQuery.
if your problem is just traversing the json..this may help.