$(document).ready(function() {
	$("a[href=#]").click(function(e) {
		e.preventDefault();
		return false;
	});

	$("#navbar li").mouseenter(function() {
		if ($(this).children("ul").length > 0)
		{
			$(this).children("ul").show();
			/* $(this).children("ul").slideDown("fast"); */
		}
	}).mouseleave(function () {
		if ($(this).children("ul").length > 0)
		{
			$(this).children("ul").hide();
			/* $(this).children("ul").slideUp("fast"); */
		}
	});

	$("a.fancybox, a.lightbox").fancybox({
		"hideOnContentClick": true,
		"transitionIn": "elastic",
		"transitionOut": "elastic"
	});

	
	/*
	$("#lightbox-gallery a").lightBox({
		imageLoading: '/img/lightbox/loading.gif',
		imageBtnClose: '/img/lightbox/close.gif',
		imageBtnPrev: '/img/lightbox/prev.gif',
		imageBtnNext: '/img/lightbox/next.gif',
		imageBlank: '/img/lightbox/blank.gif'
	});
	
	$('a.lightbox').lightBox({
		imageLoading: '/img/lightbox/loading.gif',
		imageBtnClose: '/img/lightbox/close.gif',
		imageBtnPrev: '/img/lightbox/prev.gif',
		imageBtnNext: '/img/lightbox/next.gif',
		imageBlank: '/img/lightbox/blank.gif'
	});
	*/
});
