// Highlight einblenden
$(function(){
	if( $(".highlight").length > 0 ){
		$(".highlight").appendTo(".highlightCnt");
		$(".highlightCnt").css({top:"178px",position:"absolute",opacity:"0.9"}).fadeIn("slow");
	}
})
function highlightClose(){
	$(".highlightCnt").fadeOut();
}

// horizontale Shop Navigation
$(function(){
	
	itemsWidth = 0;
	var items = $("ul.nav li");
	$.each( items, function(i,item){
		itemsWidth += $(item).width();
	});
	
	if( itemsWidth > 717 ){
		$(".shopNavigationInfo").slideDown("slow");
	}
	
})

// element ausblenden
function closeElm( elm ){ 
	$( elm ).fadeOut(); 
}
// element einblenden
function showElm( elm ){ 
	$( elm ).fadeIn(); 
}

