$(function(){
	$('.item-a img').hover(function(){
			$(this).stop().animate({width:"185px",height:"114px",left:"-8px",top:"-8px"}, 400);
		},
		function(){
			$(this).stop().animate({width:"169px",height:"98px",left:"0",top:"0"}, 400);
		});

		$('.item-a a').hover(function(){
			$(this).css("z-index","1000");
		});

	$(".exmp").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

	$("a[rel=group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});


//$(".menu-n  li").mouseover(function() {$(this).addClass("hover");}).mouseout(function() {$(this).removeClass("hover");});

//	$(".menu-n li").hover(function(){
//		$(this).find('ul').show("normal");
//		},
//		function(){
//		$(this).find('ul').hide("slow");
//		})

});

