jQuery(document).ready(function($) {
	$('a[rel*=facebox]').facebox({path : webdir + 'wp-content/themes/muzeumhracek-rk/templates/core/facebox'});

	$("a[rel^='prettyPhoto']").prettyPhoto();

	$("#menu area").mouseenter (function() {
		$("#menu img.menuItem").css("display", "none");
		$("#menu img." + $(this).attr("id")).css("display", "inline");
	});

	$("#menu img.menuItem").mouseleave (function() {
		$(this).css("display", "none");
	});
});

