jQuery(document).ready(function() {

	// edit width of central colum < 1024px
	if(jQuery('body').width() < 1024){
		jQuery('#l').append('<br />' + jQuery('#r').html());
		//jQuery('#r').hide();
		jQuery('#body_').css('padding-right','35px');
		jQuery('.h_title_site').css('font-size','13px');
	}



	//editing of central column
	var Hc = jQuery('.c').height();
	var Hr = jQuery('#r').height();
	var Hl = jQuery('#l').height();
	if(Hr>Hl && Hr>Hc){jQuery('.c').css('min-height', Hr-30+'px');}
	else if(Hr<Hl && Hl>Hc){jQuery('.c').css('min-height', Hl-30+'px');}


});
