﻿$(document).ready(function () {
    var pathname = window.location.pathname;
	if ($('a[href$="gift-shop"]').length)
	{
	    var sslAttr = $('a[href$="gift-shop"]').attr("href").replace("../../","https://agnesian.com/");
	    $('a[href$="gift-shop"]').attr("href", sslAttr);
	}
    $('.printLink').click(function () {
        //get current url
        var sign = "?";
        var full_url = window.location.href;

        var lala = full_url.indexOf("?");

        if (full_url.indexOf("?") != -1) {
            sign = "&";
        }
        //alert(sign);

        window.open(window.location + sign + "print=true", "Print", "location=1,status=1,scrollbars=1,menubar=1, width=1000,height=600");

    });

    var pattern = /print=true/g;

    //

    if (document.location.search != "") {
        //if (document.location.search.substr(1).split('=')[0] == 'print' && document.location.search.substr(1).split('=')[1] == 'true') {
        if (pattern.test(location.href)) {
            //alert('sunt pe o pagina cu print');
            $('link[media=print]').attr('media', 'all');
        }
    } 

});
