$(document).ready(function(){

	var mh= ($(document).height())-153-153;
	var ch= $('#content').height();
	if(ch<mh){
		$('#content').height(mh);
	}
	
	$('div.catalog_item').each(function(){
		var imgh = $(this).find('img').height();
		if(imgh<100){
			$(this).find('img').css('margin-top',(100-imgh)/2);
		}
		else{}
	});
	
	$('.gall').each(function(){
		var imageh = $(this).find('img').height();
		if(imageh<200){
			$(this).find('img').css('margin-top',(200-imageh)/2);
		}
	});
	
	// Инициализация prettyPhoto
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'facebook',
		overlay_gallery: false
	});

	// Эмуляция атрибутов vspace, hspace и border у картинок в зоне визуального редактора
	$('div.wysiwyg img[vspace]').each(function() {
		$(this).css('margin-top',parseInt($(this).attr('vspace'))+'px').css('margin-bottom',parseInt($(this).attr('vspace'))+'px');
	});
	$('div.wysiwyg img[hspace]').each(function() {
		$(this).css('margin-left',parseInt($(this).attr('hspace'))+'px').css('margin-right',parseInt($(this).attr('hspace'))+'px');
	});
	$('div.wysiwyg img[border]').each(function() {
		$(this).css('border',parseInt($(this).attr('border'))+'px solid #4C4C4C');
	});
	
})
