function visit_track(id,catid)
{
	var path = document.getElementById("path").value;
	$.post(path+"/visitclass.php/", {id: id,catid: catid},
	function(data)
	{ }
   );
}

function weeklyviewed(catid)
{
	var path = document.getElementById("path").value;
	document.getElementById("gallery").innerHTML = '<div align="center"><img src="'+path+'/images/ajax-loader.gif"/></div>';
	$.post(path+"/weeklyviewed.php/",{catid: catid},
	function(data)
	{ 
		document.getElementById("gallery").innerHTML = data;
	}
   );
}


function mostviewed(catid)
{
	var path = document.getElementById("path").value;
	document.getElementById("gallery").innerHTML = '<div align="center"><img src="'+path+'/images/ajax-loader.gif"/></div>';
	$.post(path+"/mostviewed.php/",{catid: catid},
	function(data)
	{ 
		document.getElementById("gallery").innerHTML = data;
	}
   );
}

function newest(catid)
{
	var path = document.getElementById("path").value;
	document.getElementById("gallery").innerHTML = '<div align="center"><img src="'+path+'/images/ajax-loader.gif"/></div>';
	$.post(path+"/newest.php/",{catid: catid},
	function(data)
	{ 
		document.getElementById("gallery").innerHTML = data;
	}
   );
}

