$(document).ready(function(){
/* Выделение работ на главоной странице, все становятся полупрозрачными, кроме той, на которой курсор */
	$('.b_mainitem').hover(function(){
		$(this).removeClass('b_mainitem');
		$(this).addClass('b_mainitemact');
		$('.b_mainitem').stop().animate({'opacity':'0.3'},200);
		$(this).children('.workname_front').stop().animate({'opacity':'0.9'},200);

	}, function(){
		$('.b_mainitem').stop().animate({'opacity':'1'},200);
		$('.workname_front').stop().animate({'opacity':'0'},200);
		$(this).removeClass('b_mainitemact');
		$(this).addClass('b_mainitem');
	});
	
	
});
