$(document).ready(function(){
    $("a[rel^=lightbox]").fancybox( {opacity:0.10} );
    $(".scroller ul").simplyScroll({
        speed:5
    });
    
    $('#through-menu ul li ul').hide();
    $('#through-menu ul li').hover(function(){
        $(this).children('ul').show();
    }, function(){
        $(this).children('ul').hide();
    });
	
	$('#webcam-wnd-close').click(function(){
		$('#webcam-wnd').hide();
		$('#webcam-wnd').css('top', '50%');
		return false;
	});
	$('a[href="/camera.php"]').click(function(){
		$('#webcam-wnd').show();
		var wndPosition = $('#webcam-wnd').position();
		var wndScrollTop = $(window).scrollTop();
		$('#webcam-wnd').css('top', wndPosition.top+wndScrollTop+'px');		
		return false;
	});
});
