$(function(){
	$('.menu ul').dropDownMenu({timer: 300, parentMO: 'parent-hover', childMO: 'child-hover1'});
	
	// Hover Click overlay
	$(".images a").click(function(){
	                        var index = $(this).closest("div").find("a").index($(this));
	                        $(".shopDesc").hide();
	                        $(".scrollerblock").each(function(){
	                            if($(this).is(":visible"))
	                                $(this).fadeOut();
	                        });
	                        $(".scrollerblock").eq(index).fadeIn();
	                        $(".shopDesc").eq(index).show();
							return false;
						});
	$(".scrollerblock").eq(0).nextAll().hide();
	
	if ($(".shopDesc").length != 0)
	{
	    $(".shopDesc:first").show();
	}
});
function updateScrollPos(scroll)
{
    $(scroll.objectId + "_pos").html("Foto " + scroll.getCurItem() + " / " + scroll.getTotalItems());
}
