$(window).ready(function(){

	$('div.card').click(function() {
		var item_id = $('img', $(this)).attr('item_id');

		var data = 'ids=' + item_id;

		$.ajax({
            type: "GET",
            url: "/clicker/clicker.php?",
            data: data,
            success: function(html){
				//alert(html);
            }
        });
	});
});
