$(document).ready(function(){

	$(".lightbox").lightbox({

	    fitToScreen: true,

	    imageClickClose: false

	});

	

	// for a page contact (moscow)

	$("a.howgo").parent('p').addClass('dow').next("p").hide();

	$("a.howgo").click(function(){

		if($(this).parent('p').attr('class') == 'dow'){

			$(this).parent('p').next('p').slideToggle(500).prev('p').removeClass().addClass('upp');

		} else{

			$(this).parent('p').next('p').slideToggle(500).prev('p').removeClass().addClass('dow');

		};

		return false;

	});

	

	// links on page with contact (city)

	$('#ter form select').change(function(){

		var cont = $(this).find('option:selected').attr('id');

		if(cont !=''){

			window.location.href = '/contact/'+cont;

		}

	});

	

	//products on front page

	$('.prev li').mouseover(function(){

		var id = $(this).index();

		$('.ful li').hide();

		$('.ful li').eq(id).fadeIn(500);

		

	});

	$('.ful li span').mouseout(function(){

			$('.ful li').hide();

		});

	var leftpos = new Array('1px', '95px', '180px', '274px', '368px', '462px', '546px');

	var bgfull = new Array('/images/product7-ful.jpg', '/images/product1-ful.jpg', '/images/product3-ful.jpg', '/images/product6-ful.jpg', '/images/product2-ful.jpg', '/images/product4-ful.jpg', '/images/product5-ful.jpg');

	for (var i=0; i<leftpos.length; i++){

		$('.ful li').eq(i).css('left', leftpos[i]).find('span').css('background-image','url('+bgfull[i]+')'); 

	}
	
	$('#topmenu li:last').css('border','none');

	
	
	
	$('#clpse').live("click", function(){
		$('#shadow').remove();
	});
	$('#shadow').click(function(){$(this).remove()});
});
