jQuery(document).ready(function($){

function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function() {
	equalHeight($('div.op_wrap'));
	equalHeight($('div.cor div.c_rb'));
});


$('body.single-ourworks div.breadcrumbs a.blog_link').html('Портфолио').attr('href', 'http://artantonio.ru/portfolio/');
$('body.single-ourworks div.bread_eng a.blog_link').html('Portfolio').attr('href', 'http://artantonio.ru/en/portfolio/');
$('div.works_categories div.breadcrumbs a.blog_link').html('Портфолио').attr('href', 'http://artantonio.ru/portfolio/');
$('div.works_categories div.bread_eng a.blog_link').html('Portfolio').attr('href', 'http://artantonio.ru/en/portfolio/');


$('span.open').click(function(){
	$('div.collapse').slideToggle('slow');
});






































































});
