<img id="resim" click-count="0" src="...." />
<img id="resim" click-count="0" src="...." />
<img id="resim" click-count="0" src="...." />
$("img#resim").click(function() {
var count = $(this).attr('click-count');
if(count == 1) {
$(this).attr('click-count', '0');
window.location.href = "http://....";
} else {
$(this).attr('click-count', '1');
}
});