function rz() {
	var height = jQuery(window).height();
	if (height < 400) height = 400;
	if (height * 0.2 < 115) 
	    jQuery('#logo').css('margin-top', parseInt(40) + 'px');
	else
	    jQuery('#logo').css('margin-top', parseInt(height * 0.2 - 75) + 'px');
	if (height > 900) height = 900;
	if (height * 0.1 < 60)
	    jQuery('.pic>img').css('height', parseInt(height * 0.8 - 60)  + 'px');
    else
        jQuery('.pic>img').css('height', parseInt(height * 0.7)  + 'px');
}

jQuery('.pic>img').ready( function() {
	rz();
});


jQuery(window).resize(function() {
  rz();
});

