$(function(){

	// Men�-Boxen auf gleiche H�he bringen!!
	setSameHeight($('.menuBox'));
	setSameHeight($('.article_bg, .article_standard'));

	setSameHeight($('.teaser_product'));
	
	//$('#nav').corner("tl tr");

	$('#submenu h3').corner("tl tr");

	$('#emotion').corner("bl br cc:#EBEBED");

	//$('div#main div').corner();

	$("a.fancybox").fancybox({ 
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': false 
	}); 



});


function setSameHeight(els){
	var max_height = 0;
	$(els).each(function(i,e){
		if($(this).height() > max_height) max_height = $(this).height();
	});
	$(els).each(function(i,e){
		$(this).css('height',max_height+'px');
	});
}

