function gotoLink (htmlElement) {
	var destinationURL = "";
	var target = "";
	
	if(htmlElement.href) {
		destinationURL = htmlElement.href;
		target = htmlElement.getAttribute("target");
	}
	else {
		if(htmlElement.childNodes) {
			if(htmlElement.getElementsByTagName("a")) {
				destinationURL = htmlElement.getElementsByTagName("a")[0].href;
				target = htmlElement.getElementsByTagName("a")[0].getAttribute("target");
			}
		}
	}
	
	if(target == "_blank") {
		window.open(destinationURL);
	}
	else {
		location.href = destinationURL;
	}
}
$(document).ready(function(){
	$(".item:nth-child(3n)").addClass("last");
	$("#tabs").tabs();
	$(".datumSelecter" ).datepicker();
	$("a#example4").fancybox({
				'titlePosition'		: 'outside',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.8
	});
	$("#menu ul:first > li").hover(
				function () {
					$(this).addClass("active-menu");
				},
				function () {
					$(this).removeClass("active-menu");
				}
	);
});



