	
	jQuery(function($) {
		
		
		head.js(baseDir+'js/jquery.masonry.js', function() {
			
			$('#BigCategoriesW strong.FirstLevel').click(function() {
				window.location = $(this).attr('rel');
				return false;
			});
			
			$('#BigCategoriesW div.FirstLevel').hoverIntent({
				over:function() {
					$('object').css('visibility', 'hidden');
					$(this).find('.CategoryPanelW').show(0);
					$(this).find('.SecondLevelCategories').masonry({ itemSelector: 'li.SecondLevel' }); 
					
				},
				out:function() {
					$('object').css('visibility', 'visible');
					$(this).find('.CategoryPanelW').hide(0);
				}
			});
		});		
		
	});
	
	

