﻿$(function () {
    // Querystring'e Erişim
    var urlParams = {};
    (function () {
        var e,
        a = /\+/g,
        r = /([^&=]+)=?([^&]*)/g,
        d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
        q = window.location.search.substring(1);

        while (e = r.exec(q))
            urlParams[d(e[1])] = d(e[2]);
    })();
    /*****************************************************************/
    if (!$.browser.msie) {

    }

    $('#header div.menu-container ul li a:last').css('background-image', 'none');
});

