$(function() {
	// Код для меню
	$('.chapters a').mouseover(function(){
		$('.chapters a.active').css({'background':'none', 'color':'#ffffff'})
	})
	$('.chapters a.active').mouseover(function(){
		$(this).css({'background':'url(/images/bg_menu.png) left top no-repeat', 'color':'#fbebc0'})
	})
	$('.chapters a').mouseout(function(){
		$('.chapters a.active').css({'background':'url(/images/bg_menu.png) left top no-repeat', 'color':'#fbebc0'})
	})	
	
	// Код для раскрашивания таблиц
	$(".content_ins table[border=1]").addClass("colored").each(function() {
		$("tr", $(this)).each(function(i) {
			if (!(i % 2)) $(this).addClass("table_row2")
		})
	})
	
	// lightbox
	$(".text a[rel=lightbox] img").parent().lightBox()

	// min-width
	if (jQuery.browser.msie && jQuery.browser.version < 7) {
		if (document.body.clientWidth < "995") $("body, .content").css("width", "995px");
		$(window).resize(function(event){
			if (document.body.clientWidth < "995") $("body, .content").css("width", "995px");
		});
	}
})

