$(function(){

	$("img.min-img").click(function () {
		$(this).next().css({position: 'fixed', width: '100%', height: '100%', top: '0px', left: '0px'}).fadeIn(1000).next().fadeIn(1000);
	});

	$("div.big-image").click(function () {
		$("div").find(".big-image-back").fadeOut(1000);
		$("div").find(".big-image").fadeOut(1000);
	});

	$("div.m-menu-but").mouseenter(function(){
		var menuHeight = ($('.intMenu').eq($(this).index()).children('a').size()) * 38;
		$('.intMenu').stop(false, true).slideUp(150).eq($(this).index()).css({top: $(this).offset().top + $(this).height() + 'px', left: $(this).offset().left - $('div.m-menu-but:first').offset().left + 'px', height: menuHeight + 'px'}).slideDown(500);
	});

	$("div#m-menu").parent().mouseleave(function(){
		$('.intMenu').stop().slideUp(150);
	});

});



