// Custom clock skin
/*
CoolClock.config.skins.cobbClock =
{
	outerBorder: { lineWidth: 4, radius:95, color: "black", alpha: 1 },
	smallIndicator: { lineWidth: 0, startAt: 0, endAt: 93, color: "black", alpha: 1 },
	largeIndicator: { lineWidth: 4, startAt: 75, endAt: 85, color: "black", alpha: 1 },
	hourHand: { lineWidth: 6, startAt: -15, endAt: 50, color: "black", alpha: 1 },
	minuteHand: { lineWidth: 5, startAt: -15, endAt: 90, color: "black", alpha: 1 },
	secondHand: { lineWidth: 1, startAt: -20, endAt: 85, color: "red", alpha: 1 },
	secondDecoration: { lineWidth: 1, startAt: 70, radius: 4, fillColor: "red", color: "red", alpha: 1 }
};
*/
jQuery(function()
{
	// Navigation hover fix:
	$('#nav li').hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});
	
	// Start clock:
	//CoolClock.findAndCreateClocks();
});
