function displayVideoCat(catID,obj){
var locationURL = document.location.href;
locationURL = locationURL.replace("#commentAddLink","");

if(locationURL.indexOf('?') != -1)
	URL = locationURL+"&tx_lsuvideo_pi1[category]="+catID+"&tx_lsuvideo_pi1[displayAjax]=1&no_cache=1";
else URL = locationURL+"?tx_lsuvideo_pi1[category]="+catID+"&tx_lsuvideo_pi1[displayAjax]=1&no_cache=1";
$('#subsubmenu').find("li.active").removeClass("active"); 
//$('.videolist li:nth-child(3n)').addClass('no-pd');
//$('.videolist li:nth-child(3n)').next().css('clear','left');

$(obj).parent().addClass('active');
$.ajax({
  url: URL,
  cache: false,
 

  success: function(html){
    $("#videoList"). replaceWith(html);
	
  }
});

}


