window.size = function()
{
	var w = 0;
	var h = 0;

	//IE
	if(!window.innerWidth)
	{
		//strict mode
		if(!(document.documentElement.clientWidth == 0))
		{
			w = document.documentElement.clientWidth;
			h = document.documentElement.clientHeight;
		}
		//quirks mode
		else
		{
			w = document.body.clientWidth;
			h = document.body.clientHeight;
		}
	}
	//w3c
	else
	{
		w = window.innerWidth;
		h = window.innerHeight;
	}
	return {width:w,height:h};
}

function adjustImgSize() {
	var im = $("#bgrimg");
	if ( !im.size() ) return false;
	//var s = window.size();
	//var w = s.width;
	var w = $("div.container.main-page").innerWidth();
	if ( w < 990 ) {
		w = 990;
	}
	var h = Math.round(w*0.75);
	im.css({width:w+'px',height:h+'px'});
	$("div.container.main-page").css({height:h+'px'});
}

function completeEmails() {
	var realDomain = 'zmk.com.ua';
	$(".incompleteMailto").each(function(){
		this.href = this.href.replace(/thissite/,realDomain);
		this.innerHTML = this.innerHTML.replace(/thissite/,realDomain);
	});
}

$(document).ready(function(){
	adjustImgSize();
	completeEmails();
});

window.onresize=adjustImgSize; 
