var domain = "http://"+location.host;

$(document).ready(function(){
    $(".submenu").click(function () {
        if($(this).parent().hasClass("open")) {
            $(this).parent().removeClass("open");
            setCookie($(this).attr("id"), 0, 3600)
        } else {
            $(this).parent().addClass("open");
            setCookie($(this).attr("id"), 1, 3600)
        }
    });
});

//
// Ostoskori
//
function addToCart ( product, token )
    {
    alterCart('addProduct', product, token);
    }
function remFromCart ( product, token )
    {
    alterCart('removeProduct', product, token);
    }
function alterCart ( ua, product, token )
    {
    $.ajax
    ({
        type:     "POST",
        url:      __domain + "/docs/ajax/alterCart.php",
        dataType: "json",
        data:     "user_action=" + ua + "&product=" + product + "&token=" + token,
        success:  displayShoppingCart,
        error:    function ( _response )
            {
            alert( _response );
            }
    });
    }
	
	
function addToCart2 ( product, token )
    {
    alterCart2('addProduct', product, token);
    }
function remFromCart2 ( product, token )
    {
    alterCart2('removeProduct', product, token);
    }
function alterCart2 ( ua, product, token )
    {
    $.ajax
    ({
        type:     "POST",
        url:      __domain + "/docs/ajax/alterCart2.php",
        dataType: "json",
        data:     "user_action=" + ua + "&product=" + product + "&token=" + token,
        success:  displayShoppingCart2,
        error:    function ( _response )
            {
            alert( _response );
            }
    });
    }
	
	
function displayShoppingCart ( data )
    {
    switch (data.type)
        {
        case '1'  : // ShoppingCart
        case '2'  : // ShoppingCart
        case '11' : // Ajax
        case '12' : // Ajax
        errorMsg(data.message);
        break;
        
        case 0 :
        $("#shopping_cart_right").html( data.message );
        break;
        }
    }
	
function displayShoppingCart2 ( data )
    {
    switch (data.type)
        {
        case '1'  : // ShoppingCart
        case '2'  : // ShoppingCart
        case '11' : // Ajax
        case '12' : // Ajax
        errorMsg(data.message);
        break;
        
		case '20' :
		location.reload();
        break;
        case 0 :
        $("#shopping_cart").html( data.html );
        break;
        }
    }
function errorMsg( msg )
    {
    alert( msg );
    }

function close_notice() {
    var x = document.getElementById('browser_notice');
    x.style.display = 'none';
}

function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    { 
    c_start=c_start + c_name.length+1; 
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    } 
  }
return "";
}

function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toGMTString())+";path=/";
}

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}


//
// http://kevin.vanzonneveld.net/techblog/article/javascript_equivalent_for_phps_urldecode/
function urldecode( str ) {
    // http://kevin.vanzonneveld.net
    // +   original by: Philip Peterson
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +      input by: AJ
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: Brett Zamir (http://brettz9.blogspot.com)
    // +      input by: travc
    // +      input by: Brett Zamir (http://brettz9.blogspot.com)
    // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: Lars Fischer
    // %          note 1: info on what encoding functions to use from: http://xkr.us/articles/javascript/encode-compare/
    // *     example 1: urldecode('Kevin+van+Zonneveld%21');
    // *     returns 1: 'Kevin van Zonneveld!'
    // *     example 2: urldecode('http%3A%2F%2Fkevin.vanzonneveld.net%2F');
    // *     returns 2: 'http://kevin.vanzonneveld.net/'
    // *     example 3: urldecode('http%3A%2F%2Fwww.google.nl%2Fsearch%3Fq%3Dphp.js%26ie%3Dutf-8%26oe%3Dutf-8%26aq%3Dt%26rls%3Dcom.ubuntu%3Aen-US%3Aunofficial%26client%3Dfirefox-a');
    // *     returns 3: 'http://www.google.nl/search?q=php.js&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:unofficial&client=firefox-a'
    
    var histogram = {}, ret = str.toString(), unicodeStr='', hexEscStr='';
    
    var replacer = function(search, replace, str) {
        var tmp_arr = [];
        tmp_arr = str.split(search);
        return tmp_arr.join(replace);
    };
    
    // The histogram is identical to the one in urlencode.
    histogram["'"]   = '%27';
    histogram['(']   = '%28';
    histogram[')']   = '%29';
    histogram['*']   = '%2A';
    histogram['~']   = '%7E';
    histogram['!']   = '%21';
    histogram['%20'] = '+';
    histogram['\u00DC'] = '%DC';
    histogram['\u00FC'] = '%FC';
    histogram['\u00C4'] = '%D4';
    histogram['\u00E4'] = '%E4';
    histogram['\u00D6'] = '%D6';
    histogram['\u00F6'] = '%F6';
    histogram['\u00DF'] = '%DF'; 
    histogram['\u20AC'] = '%80';
    histogram['\u0081'] = '%81';
    histogram['\u201A'] = '%82';
    histogram['\u0192'] = '%83';
    histogram['\u201E'] = '%84';
    histogram['\u2026'] = '%85';
    histogram['\u2020'] = '%86';
    histogram['\u2021'] = '%87';
    histogram['\u02C6'] = '%88';
    histogram['\u2030'] = '%89';
    histogram['\u0160'] = '%8A';
    histogram['\u2039'] = '%8B';
    histogram['\u0152'] = '%8C';
    histogram['\u008D'] = '%8D';
    histogram['\u017D'] = '%8E';
    histogram['\u008F'] = '%8F';
    histogram['\u0090'] = '%90';
    histogram['\u2018'] = '%91';
    histogram['\u2019'] = '%92';
    histogram['\u201C'] = '%93';
    histogram['\u201D'] = '%94';
    histogram['\u2022'] = '%95';
    histogram['\u2013'] = '%96';
    histogram['\u2014'] = '%97';
    histogram['\u02DC'] = '%98';
    histogram['\u2122'] = '%99';
    histogram['\u0161'] = '%9A';
    histogram['\u203A'] = '%9B';
    histogram['\u0153'] = '%9C';
    histogram['\u009D'] = '%9D';
    histogram['\u017E'] = '%9E';
    histogram['\u0178'] = '%9F';
 
    for (unicodeStr in histogram) {
        hexEscStr = histogram[unicodeStr]; // Switch order when decoding
        ret = replacer(hexEscStr, unicodeStr, ret); // Custom replace. No regexing
    }
    
    // End with decodeURIComponent, which most resembles PHP's encoding functions
    ret = decodeURIComponent(ret);
 
    return ret;
}