
$(document).ready(
	function(){
		$("a[rel='zoom']").fancybox(
			{'overlayShow'	: true,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'}
		);
		
		$("#menu li").hover(
			function(){
				$(this).find("ul").toggleClass("ulHover");
				var width = 0;
				var arr = $(this).query("ul li");
				console.log( arr );
				arr.each(
					function(index, item){
						width += item.offsetWidth;
						console.log( width );
					}
				);
			},
			function(){
				$(this).find("ul").toggleClass("ulHover");
			}
		);
	}

);



