/* CREDITS
 * ----------------------------------------------------------
 * Title:		Update banner click stats
 * Author:		Dirk Bonhomme <dirk@inventis.be>
 * Date:		22/10/2009
 * Last Edit:	16/03/2011 [Dirk Bonhomme]
 * ----------------------------------------------------------
 * Inventis - Web Architects - We design the Web!
 * www.inventis.be
*/

$(document).ready(function() {

	// Find each banner
	$('div.banner').each(function(){
		$(this).click(function(){
			var idField = $(this).children('input[name=id]').get(0);
			if(idField){
				jQuery.post(
					'/banners/click',
					{id: idField.value}
				);
			};
		});
	});
	
});
