//statystyki (wyswietlanie i klikniecia banerow)
jQuery(document).ready(function() {
    //zliczanie wyswietlen
    var ids = "";
    jQuery('div img[src~=/pics_banners/]').each(function(index) {
        var str = jQuery(this).attr("src");
        var pos = str.lastIndexOf("/");
        str = str.substr(pos + 1);
        pos = str.indexOf("_");
        str = str.substr(0,pos);
        ids = ids + index + "=" + str + "&";
      });
    jQuery.post("countViews.php", ids);
});

jQuery(document).ready(function() {
    //zliczanie klikniec
    var str = '';
    jQuery('a img[src~=/pics_banners/]').click(function() {
        str = jQuery(this).attr("src");
        var pos = str.lastIndexOf("/");
        str = str.substr(pos + 1);
        pos = str.indexOf("_");
        str = '0=' + str.substr(0,pos);
        jQuery.post("countClicks.php", str);
      });
});

//zliczanie wyswietlen banerow flashowych
jQuery(document).ready(function() {
    var ids = "";
    jQuery('embed[src~=/pics_banners/]').each(function(index) {
        var str = jQuery(this).attr("src");
        var pos = str.lastIndexOf("/");
        str = str.substr(pos + 1);
        pos = str.indexOf("_");
        str = str.substr(0,pos);
        ids = ids + index + "=" + str + "&";
        jQuery(this).css({"position":"relative","z-index":"1","left":"0","top":"0"});
      });
    jQuery.post("countViews.php", ids);
});
