$(document).ready(function(){	if($('.tabcontent').hasClass('show'))$('div#page_margins2, div#bread').css('background','url(/fileadmin/img/topNavContentBg.png) left top repeat-x #d7dee3');	// #tabMenu UL Hover	$('#tabMenu > li').mouseover(function(){		$(this).addClass('mouseover').removeClass('mouseout');	}).mouseout(function(){		$(this).hasClass("selected")?$(this).removeClass('mouseover'):$(this).addClass('mouseout').removeClass('mouseover');	});	//Get all LI from the #tabMenu UL	$('#tabMenu > li').click(function(){		//remove the selected class from all LI    		$('#tabMenu > li').removeClass('selected');				//Reassign the LI		$(this).addClass('selected');				//Hide all the DIV in #boxBody		$('div#boxBody div').css('display', 'none');				//Look for the right DIV in boxBody according to the Navigation UL index, therefore, the arrangement is very important.		$('div#boxBody div:eq(' + $('#tabMenu > li').index(this) + ')').show();				if($(this).hasClass("child")) {			$('div#page_margins2, div#bread').css('background','url(/fileadmin/img/topNavContentBg.png) left top repeat-x #d7dee3');			$('div#close').html('Produktübersicht schließen').css('background','url(/fileadmin/img/close.png) 0 3px no-repeat');		}		else {			$('div#close').html('');			$('div#page_margins2, div#bread').css('background', '#ffffff');		}	});	// default Produktübersicht schließen	if($('div#close').html() == ''){		if($(".tabcontent").hasClass("show")) {		  	$('div#close').html('Produktübersicht schließen').css('background','url(/fileadmin/img/close.png) 0 3px no-repeat');	  } else {			$('div#close').html('Produktübersicht öffnen').css('background','url(/fileadmin/img/open.png) 0 1px no-repeat');	  }	};	// Produktübersicht öffnen/schließen	$('div#close').click(function(){		if($('div#close').html() == 'Produktübersicht schließen') {			$('div#boxBody div').css('display','none');			$('div#page_margins2, div#bread').css('background','#ffffff');			$('div#close').html('Produktübersicht öffnen').css('background','url(/fileadmin/img/open.png) 0 1px no-repeat');		}		else {			$('div#boxBody div.act').show();			$('div#page_margins2, div#bread').css('background','url(/fileadmin/img/topNavContentBg.png) left top repeat-x #d7dee3');			$('div#close').html('Produktübersicht schließen').css('background','url(/fileadmin/img/close.png) 0 3px no-repeat');		}	});	$('.itemBox').mouseover(function(){		$('.tabcontentTitle',this).addClass('mouseover').removeClass('mouseout');	}).mouseout(function(){		$('.tabcontentTitle',this).hasClass('active')?$('.tabcontentTitle',this).addClass('mouseout'):$('.tabcontentTitle',this).addClass('mouseout').removeClass('mouseover');	});	// image_zoom	$('.mclightbox').fancybox({		'zoomSpeedIn':		300,		'zoomSpeedOut': 	300,		'zoomSpeedChange': 300,		'zoomOpacity':		true,		'overlayShow':		false,		'easingIn':			'easeOutBack',		'easingOut':		'easeInBack'	});});