jQuery(document).ready(function() {
	// отправка формы
	jQuery('img.submit').click(function() {
		var formId = jQuery(this).attr('form_id');		
		jQuery('#'+formId).submit();
	});	
});

/**
 * Изменить размеры фотографии в нужной пропорции
 */
function isWindowResize(v_img_coefficient) {
	var pageHeight = jQuery(window).height();
	var pageWidth = jQuery(window).width();

	// размеры изображения
	var imgWidth = pageHeight / v_img_coefficient;
	jQuery('#page_right img').css('width', imgWidth);
	jQuery('#page_right img').css('height', pageHeight);
}

/**
 * Отправить форму обратной связи
 */
function sendFeedback() {
	jQuery('#form_send_feedback').submit();
}

/**
 * Изменены размеры страницы новостей.
 */
function isWindowResizeNews() {
	var v_margin = jQuery('#page_left').width()
			+ jQuery('#page_center').width();
	jQuery('#page_right').css('margin-left', v_margin);
}

