$(document).ready(function(){
	var sUrl = baseurl + "/ajax/popular_tags.php";

	$.ajax({
		type: "GET",
		url: sUrl,
		dataType: 'html',
		success: function(msg)
		{
			$("div#content").append(msg).show();
		},
		error: function()
		{
			//alert('Connection Failed.');
		}
	});
});

