$(document).ready(function(){
	/*Current url*/
	var currentUrl = window.location.pathname.substr(1) + window.location.search; 
	/*Hiding breadcrumb on home url*/
	if(currentUrl == window.location.pathname.substr(1)){
		$('#top-breadcrumb').empty();
	}
	/*Current page link detection*/
	$('nav a').each(function() {
		if ($(this).attr('href')  ===  currentUrl) {
			$(this).addClass('current');
		}
	});
	/*Colorbox instantiate*/
	
	$("a > img.slideshow").parent().colorbox({photo: true, rel:"galleri"});
	$("a.slideshow").colorbox({photo: true, rel:"galleri"});
	
	/*Odd/even class assignment*/
	$(".striping .stripe:even").addClass("odd");
	$(".striping .stripe:odd").addClass("even");
 
	/*Removing menu if no items populate it*/
	if($("#main-content-bar-navigation ul li").length == 0){
		$("#main-content-bar-navigation").hide();
	}
});
