$(document).ready( function() {
    
    $('#map_container').css('height', $('#text_content').height() - 9);
    $('#map_container_inner').css('width', $('#map_container').width() - 2);
    $('#map_container_inner').css('height', $('#map_container').height() - 2);
    $('#map').css('width', $('#map_container_inner').width() - 2);
    $('#map').css('height', $('#map_container_inner').height() - 2);
    
    var map = new YMaps.Map(document.getElementById("map"));
    var placemark = new YMaps.Placemark(new YMaps.GeoPoint(60.590953,56.813059), {style: "default#greenSmallPoint"});
    placemark.description = 'Студия "Чистый стиль": Екатеринбург, ул. Московская, 195, +7 (343) 268-47-97';
    map.addOverlay(placemark);
	
    map.setCenter(new YMaps.GeoPoint(60.590953, 56.813059), 15);
    
    $('.portfolio-column').css('width', Math.round(($('.container').width()/100)*23) + 'px');
    
    $(window).resize( function() {
	
	$('#map_container').css('height', $('#text_content').height() - 9);
	$('#map_container_inner').css('width', $('#map_container').width() - 2);
	$('#map_container_inner').css('height', $('#map_container').height() - 2);
	$('#map').css('width', $('#map_container_inner').width() - 2);
	$('#map').css('height', $('#map_container_inner').height() - 2);
    
	var map = new YMaps.Map(document.getElementById("map"));
	var placemark = new YMaps.Placemark(new YMaps.GeoPoint(60.590953,56.813059), {style: "default#greenSmallPoint"});
	placemark.description = 'Студия "Чистый стиль": Екатеринбург, ул. Московская, 195, +7 (343) 268-47-97';
	map.addOverlay(placemark);
	
	map.setCenter(new YMaps.GeoPoint(60.590953, 56.813059), 15);	     
    
	$('.portfolio-column').css('width', Math.round(($('.container').width()/100)*23) + 'px');
    
    });
    
    $("a.portfolio-image").fancybox({
        
	'transitionIn' : 'none',
	'transitionOut'	: 'none',
        'autoScale' : false,
        'centerOnScroll' : false,
        'overlayColor' : '#fff',
        'overlayOpacity' : 0.9
        
    });
        
});
