$(document).ready(function(){

	$('.bigImage').attr('src', $('.previews a:first').attr('href') );
	$('.constr a[id!=ignore]').click(function(){
		$(this).siblings('a').removeClass('active');
		$(this).addClass('active');
		_title=$(this).find('img').attr('alt');
		$(this).parent().find('.title').text(_title);
		return false;
	});


	$('.previews a[id!=dd]').click(function(){
		$(this).siblings('a').removeClass('active');
		$(this).addClass('active');
		$('img.bigImage').attr('src', $(this).attr('href') );
		$('img.bigImage').parent().attr('href', $(this).attr('src0') );
		return false;
	});

});
