$(document).ready(function() {
	$('.submenu').each(function() {
		$(this).mouseleave(function() {
			$(this).hide();
		});
	});
	
	// FancyBox starten
	$("div.text a[rel='lytebox[group]']").fancybox();
	$("a[rel='fancybox']").fancybox();
	$("a.iframe").fancybox();
	
	$('#inhaltProdukt').css('opacity', 0.9);
});

function showSubMenu(rootEle, subEle, offsetting)
{
	var offset = $(rootEle).offset();
	$(subEle).css('top', offset.top - offsetting).css('opacity', 0.95);
	$(subEle).show();
}