$(document).ready(function() {	
	$("div.valuesIn dl.item:first").addClass("first");
	
	$("div.sliders h3").click(function() {
		$("div.sliders h3").removeClass("bold");
		$(this).addClass("bold");
		$("div.sliders div.block div.blockIn").slideUp();
		$(this).parent().find("div.blockIn").slideDown();
	})
	
	$("div.sertificats a.showLink").click(function() {
		$(this).parent().find("div.sertificatsIn").slideToggle();
		$(this).hide();
		$("div.sertificats a.hideLink").css('display','block').show();
	})
	
	$("div.sertificats a.hideLink").click(function() {
		$(this).parent().find("div.sertificatsIn").slideToggle();
		$(this).hide();
		$("div.sertificats a.showLink").show();
	})
	
	$("div.allteam div.teamRow:last-child").addClass("last");
	
	$('.topimage').bind(
		'click',
		function(){
			var src = $(this).attr( 'href' );
			
			var windowHeight = $(window).height();
			var documentHeight = $(document).height();
			var windowWidth  = $(window).width();
			var scrollTop    = $(document).scrollTop();
			var left = (windowWidth - 840) / 2;
			var top  = 100 + scrollTop;
			
			var block = '<div id="historyFotoWrap" style="background: black; opacity: 0.2; position: absolute; left: 0px; top: 0px; width: ' + windowWidth + 'px; height: ' + documentHeight + 'px; z-index: 40"></div><div id="historyFoto" style="text-align: center; overflow: hidden; z-index: 100; background:#eaeaea;  padding: 40px 20px 20px 20px;position: absolute; left: ' + left + 'px; top: ' + top + 'px; width: 798px; border: 1px solid #b2b2b2"><img src="' + src + '" style="margin: 0 auto;"/><div style="width: 18px; height: 18px; background: url(../i/close.png) no-repeat; position: absolute; right: 10px; top: 10px; cursor: pointer;" onclick="$(\'#historyFotoWrap, #historyFoto\').remove()"></div></div>';
			
			$('body').append( block );
			
			return false;
		}
	);
	
})
