/***********************************************************************Author:     Sander TiekstraCompany:    TiekstramediaURL:        http://www.tiekstramedia.nl***********************************************************************/$(document).ready(function() {		/* Global variabels	------------------------------------------------------------------*/		/* Initiate	------------------------------------------------------------------*/		// Home specific functions	if ($('body.home').length > 0) {		initSpecialsNav();	};			/* Initiate after scrolling and resizing	------------------------------------------------------------------*/		$(window).resize( function () {	});	$(window).scroll( function () {	});		/* = Home	------------------------------------------------------------------*/	// 	function initSpecialsNav() {		$('#specials-navigation ul li').each(function() {			$(this).mouseover(function() {				$('#specials-navigation ul li.breadcrumb').removeClass('breadcrumb');				$('#specials-navigation ul li.last-child-breadcrumb').removeClass('last-child-breadcrumb');								if ($(this).hasClass('last-child')) {					$(this).addClass('last-child-breadcrumb');					}				$(this).addClass('breadcrumb');			});		});	}					/* Toolbox	------------------------------------------------------------------*/	});
