var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;

function jsddm_open() {
	jsddm_canceltimer();
	jsddm_close();
	ddmenuitem = $(this).find('ul').eq(0).css('visibility', 'visible');
}

function jsddm_close() {
	if (ddmenuitem)
		ddmenuitem.css('visibility', 'hidden');
}

function jsddm_timer() {
	closetimer = window.setTimeout(jsddm_close, timeout);
}

function jsddm_canceltimer() {
	if (closetimer) {
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

document.onclick = jsddm_close;

$(document).ready( function() {

	$('#jsddm > li').bind('mouseover', jsddm_open);
	$('#jsddm > li').bind('mouseout', jsddm_timer);

	$(".homepage-focus-item-thumbnail-text a").hover( function() {
		var id = $(this).attr("rel");
		$(".homepage-focus-image-element").hide();
		$("#homepage-focus-image-" + id).show();

		$(".homepage-focus-title-element").hide();
		$("#homepage-focus-title-" + id).show();
	}, function() {
	});
	
	$('a[rel="zoom"]').each(function() {

		$(this).fancyzoom({overlay:'0'});

		$(this).css({'display': 'block', 'position': 'relative', 'width': $(this).children('img').width()});
		$('<div />').appendTo($(this)).addClass('zoom-overlay');
	});


});