﻿

$(function() {
    // no cache for all AJAX functions
    $.ajaxSetup({
        cache: false
    });

    //$(document).pngFix(); 

    $("div#bodyTop > ul > li#" + page + " > a")
        .css("background-color", "#f4f4ea")
        .css("color", "#878760");

    $("li#" + saleRent + " > a")
        .css("background-color", "#f4f4ea")
        .css("color", "#878760");
    
    $("img.away").each(function() {
        var letimg = '<img src="../../Content/Images/TeLaat.png" style="position: absolute; top: 0; left: 0;" />';
        if ($(this).attr("publId") != null) {
            var wrapper = $('<span style="position: relative; display: inline-block;"><a href="../aanbod/detail?pubId=' + $(this).attr("publId") + '&c=' + additional + '"></a></span>');
        }
        else {
            var wrapper = $('<span style="position: relative; display: inline-block;"></span>');
        }
        $(this).wrap(wrapper).after(letimg);
    });
});



