﻿$(document).ready(function(){
	$(".menu li:not(.menu li.active):last").css('background','none');
	//$(".crumb a:last").css('background','none');
	$(".item_inf div:last").css('border','0');
	$(".inner ul.news li div.n_text:last").css('border','0');
	$(".inner ul.news li:last").css('margin','0');
	
	$(".menu li.mn1.mnv").hover(function(){
		$(this).children('ul').show();
		$(this).addClass('hover');
	},function(){
		$(this).children('ul').hide();
		$(this).removeClass('hover');
	});
	
	$(".catalog ul li").each(function(i){
		if(i%3==2)$(this).css('border-right','0');
	});
	
	// WINDOW
	$('#phones').click(function(e) {
		$('#popup').height($('#content').height()).show();
		$('#w_phone').fadeIn(300);
		e.preventDefault();
	});
	$('.window .close').click(function(e) {
		$('#popup').fadeOut(300);
		$('#w_phone').hide();
	});
	
	// GAL
	$('.gal .g_small a').click(function(e){
		e.preventDefault();
		var src = $(this).attr('href');
		$('.gal .g_big img').hide().attr('src',src);
		
		$('.gal .g_big img').load(function(){
			$('.gal .g_big img').fadeIn(200);
		});
		src = '';
	});

	/////////////////////
	$(".c_b div a img").fadeTo(200,"0.5").hover(function(){
		$(this).stop().fadeTo(200,"1");
	},function(){
		$(this).stop().fadeTo(200,"0.5");
	});

	
	// TABLE STYLE
	$('.text table tbody tr:first').addClass('title');
	$('.text table tbody tr:not(.content table tbody tr:first):odd').addClass('next');
	
});


