$('.ads_category').livequery('click',function(){
	var adId = $(this).attr('id');
	adId = adId.split('_');
	adId = adId['1'];
	$.ajax({
		type 	 : 'GET',
		url  	 : '/index/get-ads/category/'+adId,
		dataType : 'html',
		success  : function(html){
				$('#footer_ads').html(html);
		}
			
	})
})
