function showCategList(url, catID, page) {
	$("#latestList,#galleryCatList").empty().width(230).height(208).addClass('loader');
	var data = 'tx_gallery_pi1[showCateg]='+catID+'&tx_gallery_pi1[page]='+page+'&tx_gallery_pi1[ajaxSwitchCat]=1';
	var currentUrl = document.location.href;
	if(currentUrl.indexOf('?') != -1)
		currentUrl = currentUrl+"&tx_gallery_pi1[showCateg]="+catID+'&tx_gallery_pi1[page]='+page+"&tx_gallery_pi1[ajaxSwitchCat]=1&type=3686";
	else 
		currentUrl = currentUrl+"?tx_gallery_pi1[showCateg]="+catID+'&tx_gallery_pi1[page]='+page+"&tx_gallery_pi1[ajaxSwitchCat]=1&type=3686";
	$.ajax({
		url: currentUrl,
		cache: false,
		type: "POST",
		data: data,
		success: function(html){
			$("#latestList,#galleryCatList").replaceWith(html);
			$("#latestList,#galleryCatList").removeAttr('width').removeAttr('height').removeClass('loader');
		}
	});
}

function closeTipForm() {
	var data = document.location.href;
	var currentUrl = document.location.href;
	$.ajax({
		url: currentUrl,
		cache: false,
		type: "POST",
		data: data,
		success: function() {
			$("#tipafriendlayout").html(' ');
		}
	});
}
