$(document).ready(function() {
	
	/*--- main menu ---*/
	//$("#menu li.alt > a").addClass("alt"); // add alt class to child of li element with an alt class
	//$("#menu :not(li.alt) > ul, #menu :not(li.alt) > span").hide(); // contract the whole menu but the open items (marked with class .alt)
	
	/*--- end main menu ---*/
	
	
	/*--- bookmark & set as homepage ---*/
	$("bookmark-button").click(function() {
		arctBookmarkIt('testna stran', 'http://www.arctur.si');
	});
	$("set-as-homepage-button").click(function() {
		arctSetAsHomepage(this, 'http://www.arctur.si');
	});
	/*--- end bookmark & set as homepage ---*/
	
	//lightbox photo
	$('a[@rel*=lightbox]').lightBox({
		imageLoading: '/images/loading.gif',
		imageBtnClose: '/images/close.gif',
		imageBtnPrev: '/images/prev.gif',
		imageBtnNext: '/images/next.gif'
	}); // Select all links that contains lightbox in the attribute rel
	
});