// JavaScript Document

function header()
	{
	var d=document;
	var date = new Date();
	var cuka=document['cookie'].split(";");
	
	if(window.location.pathname.match(/^\/services\/order\//i)!=null)
		{

		for(var i in cuka)										// ���� ���� ����, �� ������ ���������
			{
			var value=unescape(cuka[i]).split("=");
	
			if(value[0]==" links"&&value[1]!="")
				{
				document.getElementsByTagName("h1")[0].innerHTML=value[1];
		//		document.getElementById("path").innerHTML='<strong>Звоните сейчас, и мы подробно расскажем вам об этом.</strong>';
				date.setTime ( date.getTime());
				document.cookie = "links=; "+date.toGMTString()+"; path=/";
				break;
				}
			}
							
		}
	else if(window.location.pathname.match(/^\/portfolio\/[0-9]+/i)!=null)
		{
		var blueLink=d.getElementById("how_much_container").firstChild;
		blueLink.onclick=function()
							{							
							document.cookie = "links="+escape(blueLink.innerHTML)+"; "+date.toGMTString()+"; path=/";								// ���� ���������� ���., ��������� ��������
							}
		}

	}	
