$(function(){
	
	var sendString = '';
	$(".banner").each(function(){
		$(this).click(function(){
			//this will update banner click attribute
			var elem = this;
			//alert(this.id);
			$.post(
				"/banners/updateClick/1",
				{banner:elem.id, authenticity_token:window._token},
				function(){}
			)
		});
		
		sendString += this.id + ","
	});

	if(sendString != ''){
		$.post(
			"/banners/updateView/1",
			{banner:sendString, authenticity_token:window._token}
		);
	}
});