$(document).ready(function(){
	var bannerGroups = '';
	$('.banner_ad').each (function(){
		var id = $(this).attr('id');
		if (id) {
			bannerGroups +=id.substring(2)+',';
		}
	});
	
	$.ajax({
	      url: "/banner/index/updateview",
	      type: "POST",
	      data: ({groups : bannerGroups}),
	      dataType: "json",
	      success: function(jsonData){
	         
	      }
	});

});
