startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("category");
		for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";
  			}
  			node.onmouseout=function() {
  				this.className=this.className.replace(" over", "");
   			}
   		}
  		}
 	}
}
window.onload=startList;

function showPoster(obj){
	var linkTo = obj.href;
	document.getElementById('boxposter').innerHTML='<div class="poster-huge"><img src="'+linkTo+'"><\/div>';
	document.getElementById('boxposter').style.display='block';
	return false;
}
function hidePoster(){
	document.getElementById('boxposter').style.display='none';
}
function showPostcard(){
	if(document.getElementById('cardcheck').checked){
		document.getElementById('postcard').style.display='block';
	}else {
		document.getElementById('postcard').style.display='none';
	}
	
}

function addGift(id, name, cost){
	document.getElementById('giftorder').innerHTML+='<div id="gift'+id+'">'+name+' ('+cost+' руб.) <a href="#" onclick="javascript:remGift('+id+'); return false;">удалить<\/a><input type="hidden" name="gift[]" value="'+id+'"><\/div>';
	document.getElementById('giftorder').style.display='block';
	alert('Подарок добавлен к заказу.');
}
function remGift(obj){
	var elm = document.getElementById('gift'+obj);
	elm.parentNode.removeChild(elm);
	return false;
}
