function feedback() {
	var showtag="@"
	var showlink="&#1053;&#1072;&#1087;&#1080;&#1096;&#1080;&#1090;&#1077; &#1085;&#1072;&#1084;!";
	var showname="info";
	var showhost="prosha.ee";
	//document.write("<a href="+"mail"+"to:"+showname+showtag+showhost+">"+showlink+"<\/a>");
	document.write('<span>'+showname+showtag+showhost+'</span>');
}

function greeting() {
	Now = new Date()
	Hour = Now.getHours();

	if (Hour < 5) {
		msg ="Доброй ночи!";
	}else if(Hour <12){
		msg ="Доброе утро!";
	}else if(Hour < 18){
		msg ="Добрый день!";
	}else if (Hour < 24){
		msg ="Добрый вечер!";
	}
		
	return msg;
}

$(document).ready(function(){

	$('#gallery a').colorbox(); 
		
	var mx = new ElementMaxHeight();
	var location = window.location.href.toString();

	$('#nav a').each(function(i){
		if ( location.indexOf($(this).attr('href')) != -1 ){
			$(this).addClass('active');
		}
	});
});
