window.onload = function(){
	var obj;
	setSearchVehavior();
	setNewWin();
	for(var i = 0; (obj = document.getElementsByTagName("a")[i]); i ++){
		if(obj.getAttribute("class") == "get-into-cart" || obj.getAttribute("className") == "get-into-cart"){
			obj.onclick = function(){
				var code = this.getAttribute("title");
				var cookies = document.cookie + ";";
				var from = cookies.indexOf("jicoCart=");
				if(from == -1){
					document.cookie = "jicoCart=" + code + "*1; path=/; expires=Tue, 1-Jan-2030 00:00:00;";
				}else{
					var to = cookies.indexOf(";", from + 1);
					var currentCart = cookies.substring(from + 9, to);
					if(currentCart){
						if(currentCart.indexOf(code + "*") == -1){
							document.cookie = "jicoCart=" + currentCart + "," + code + "*1; path=/; expires=Tue, 1-Jan-2030 00:00:00;";
						}
					}else{
						document.cookie = "jicoCart=" + code + "*1; path=/; expires=Tue, 1-Jan-2030 00:00:00;";
					}
				}
			}
		}
	}
}
