// JavaScript Document
// cocoa clickHandler
function clickHandler(){
	if(this.id=="header"){
		window.document.location.href = 'index.html';
	}
	else if(this.id=="navbarks"){
		window.document.location.href = 'barks.html';
	}
	else if(this.id=="navdark"){
		window.document.location.href = 'dark.html';
	}
	else if(this.id=="navmilk"){
		window.document.location.href = 'milk.html';
	}
	else if(this.id=="navwhite"){
		window.document.location.href = 'white.html';
	}
	else if(this.id=="navbrownies"){
		window.document.location.href = 'brownies.html';
	}
	else if(this.id=="navbestofwestchester"){
		window.document.location.href = 'bestofwestchester.html';
	}
	else if(this.id=="navabout"){
		window.document.location.href = 'about.html';
	}
}