
var page;

jQuery.ajaxSetup ({
    cache: true
});

var j = jQuery.noConflict();
j(document).ready(function(e) {
	getGameList(tId,1); 
    j("#webmenu").msDropDown(); 
});
					

function getGameList(tid,page) {	
    AjaxSrc = basePath1 + "sv/Gamelist?cat_id=" + tid + "&page="+page; 
    //alert(AjaxSrc);
    jQuery(".title_big .h1-title").load(AjaxSrc + "&act=title").fadeOut('normal').fadeIn('normal');
    //jQuery("#show-parent .show-child").load(AjaxSrc + "&act=list").fadeOut('normal').fadeIn('normal');
      jQuery("#show-parent .show-child").load(AjaxSrc + "&act=list", function(response, status, xhr) {
 		if (status == "error") {
  		var msg = "Sorry but there was an error: ";
  		$("#commentContainer").html(msg + xhr.status + " " + xhr.statusText);
 		}else{
			if (status == "success") {
  			jQuery("#show-parent .show-child").fadeOut('normal').fadeIn('normal')};	
		}
	});


	return false;
}



