function getSiteLink(menuList,styleParams){
	jQuery.ajax({
		type : "GET",
		dataType:   "json",
		timeout : 30,
		url : "Json/modLink.Json.php",
		async : false ,
		success : function(json){
			var loader = new menuLoader();
			loader.init(styleParams);
			return loader.makeMenu(menuList,json);
		}
	});
}
jQuery.getSiteLink = function(menuList,styleParams)
{
	return getSiteLink(menuList,styleParams);
}