$(document).ready(function(){
	
	$("#akthajo").stop().css({left:($(document).width()-$("#akthajo").width())/2}).animate({marginTop:30}, 1600);	
	t = setTimeout("akthajoHop()", 25000);
	
	$(".jmp3").jmp3();
	
	$(".menu-item").click(function(){
		$("."+$(this).attr("hide")).hide();
		$("#"+$(this).attr("show")).fadeIn("fast");
		$(".menu-item").removeClass("active");
		$(this).addClass("active");
		return false;
	});
	
	$("a.colorboxImg").colorbox({
		height: "600px",
		arrowKey: false,
		loop: false
	});
	
	$("a.colorboxKrit").colorbox({
		arrowKey: false,
		loop: false
	});
	
	$("a.colorboxYT").colorbox({
		iframe: true,
		innerWidth:425,
		innerHeight:344
	});
		
	$("a.colorboxGallery").colorbox({
		height: "600px",
		current: "{current}. / {total}",
		arrowKey: true,
		loop: true
	});
	
	if (location.pathname.split("/")[1]){
		$("#menu ul li a[href='"+location.pathname.split("/")[1]+"']").addClass("active");
		if (location.pathname.split("/")[1]=="szinhaz" || 
			location.pathname.split("/")[1]=="program" || 
			location.pathname.split("/")[1]=="bemutatkozas" || 
			location.pathname.split("/")[1]=="kontakt" || 
			location.pathname.split("/")[1]=="referencia" || 
			location.pathname.split("/")[1]=="impresszum"){
			$("#container #menu").addClass("yellow-menu");
		}
	}	
	
	$.get("refreshevents.php");
});

var t;
function akthajoHop(){
	$("#akthajo").stop().animate({marginTop:20}, 600, function(){
		$(this).animate({marginTop:30});
		t = setTimeout("akthajoHop()", 50000);
	});
}
