/** Tesla JS Router **/

function router(path) 
{
	var baseHref = document.getElementsByTagName('base')[0].href;
	return baseHref + path + '.html';
}

/** Main Script **/

$(document).ready(function () {
	/* Bind Colorbox */
	$("a[rel='lightbox']").colorbox({transition:"fade"});
	
});


