$(document).ready(function() {
	
	// LIGHTBOX
	
	$('#gallery a').lightBox();
	$('.lb_image').lightBox();
	
	// MENU
	
	$('#menu ul li ul').hide();
	
	$('#menu ul li').hover(function() {
	clearTimeout($(this).data('timeout'));
		$(this).find('ul').slideDown('fast');
	}, function() { 
		var toSlideUp = $(this);
	var t = setTimeout(function() {
		toSlideUp.find('ul').slideUp('fast');
	}, 400);
    $(this).data('timeout', t);
	});
			
	// Sidla 
	
	$('.offices_thumbs_holder a').click(function() {
	
		var selectedCat = $(this).attr('href');
		$('.offices_thumbs .item').hide();
		$('.offices_thumbs').find('.item[rel="'+selectedCat+'"]').show();
		
		if(selectedCat == 0)
			$('.offices_thumbs .item').show();
			
		return false;
	
	});
	
});

