﻿/// <reference path="jquery-1.2.6.min.js" />
$(function() {

    $(".fancybox").fancybox({
        'overlayShow': true,
        'hideOnContentClick': true,
        'overlayOpacity': 0.7
    });

    $(document).pngFix();

    var currentURL = document.location;

    if (currentURL.host == 'www.kylinstallationer.se' || currentURL.host == 'kylinstallationer.se' || currentURL.host == 'localhost') {
        var cookie = $.cookie('loaded');
        if (cookie == null) {
            var width = document.documentElement.clientWidth;
            var left = (width - 670) / 2;
            $('#byttnamn').css('width', '670px');
            $('#byttnamn').css('left', left + 'px')
            $('#byttnamn').slideDown(2000);
            $.cookie('loaded', '1', { expires: 1 });
        }
    }

    $('#byttnamn').click(function() {
        $('#byttnamn').slideUp();
    });
});
