function setShadow() {
	if ($(".yellow-border-box h5")) {
		$(".yellow-border-box h5").html($(".yellow-border-box h5").html() + "<span>" + $(".yellow-border-box h5").html() + "</span>");
	}
	if ($(".yellow-border-box h6")) {
		$(".yellow-border-box h6").html($(".yellow-border-box h6").html() + "<span>" + $(".yellow-border-box h6").html() + "</span>");
	}
	if ($(".box_kepek_eloszto .box_kep")) {
		for (var i=1; i<$(".box_kepek_eloszto .box_kep").length + 1; i++) {
			$(".box_kepek_eloszto .box_kep:nth-child(" + i + ") h2").html($(".box_kepek_eloszto .box_kep:nth-child(" + i + ") h2").html() + "<span>" + $(".box_kepek_eloszto .box_kep:nth-child(" + i + ") h2").html() + "</span>");
		}
	}
}

function setActiveTab() {
	var lastIdxOfEgyeni = document.location.href.lastIndexOf("egyeni");
	var lastIdxOfCeges = document.location.href.lastIndexOf("ceges");
	var indexOfQuestionmark = document.location.href.indexOf("?");

	if ((indexOfQuestionmark != -1) && (lastIdxOfEgyeni > indexOfQuestionmark)) {
		$("#szobafoglalas-fejlec").addClass("wellness");
		$("#szobafoglalas-fejlec").removeClass("konferencia");
		$("#szobafoglalas-fejlec-bal p").css("margin", "29px 0 0 29px");
		$("#szobafoglalas-fejlec-jobb p").css("margin", "35px 0 0 10px");
		$("#szobafoglalas-tartalom").show();
		$("#szobafoglalas-tartalom2").hide();
	}
	else if ((indexOfQuestionmark != -1) && (lastIdxOfCeges > indexOfQuestionmark)) {
		$("#szobafoglalas-fejlec").removeClass("wellness");
		$("#szobafoglalas-fejlec").addClass("konferencia");
		$("#szobafoglalas-fejlec-bal p").css("margin", "35px 0 0 29px");
		$("#szobafoglalas-fejlec-jobb p").css("margin", "30px 0 0 10px");
		$("#szobafoglalas-tartalom").hide();
		$("#szobafoglalas-tartalom2").show();
	}
}

$(document).ready(function(){
	// setShadow();
	setActiveTab();
});
