﻿$(document).ready(function() {
    
    //image preload
    jQuery.imgPreLoad = function() {
        for (var i = 0; i < arguments.length; i++) {
            jQuery("<img>").attr("src", arguments[i]);
        }
    }
    $.imgPreLoad("/images/nav/Nav_youarehere.png","/images/nav/nav_eklub.gif","/images/nav/nav_findalocation.gif","/images/nav/nav_giftcards.gif","/images/nav/nav_home.gif","/images/nav/nav_neighbourhood.gif","/images/nav/nav_ourmenu.gif","/images/nav/nav_promotions.gif");

    $('.popupLink').click(function(e) {
        e.preventDefault();
        window.open($(this).attr('href'), $(this).attr('name'), $(this).attr('options'));
            return false;
    });

});

jQuery(function($) {
    $("img").pngfix();
});

