jQuery.noConflict();

jQuery(document).ready(
function(){ 
	
	

	jQuery('.margin-news-cat-ul li span').click(
		function(){
			jQuery('.margin-news-cat-li > ul').hide("fast");
			//jQuery(this).parent('ul').show("normal");
			jQuery(this).parent().find('ul').show("normal");
		});
});

