var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;

if (IE6) {

// pngfix

	DD_belatedPNG.fix('.nav_st, .logo_h img, .information_h .phone, .information_h .phone .number, .lvl_1_bl, .nav_dm .lvl_1_itm .ie_l, .announce_h, .announce_h .ie_l, .announce_h .ie_r, .fld_type_sel, .fld_type_met, .fld_type_drop_cl, .fld_type_drop_op, .copy_f .logo_f, .nav_dm_sec .sub_settle, .nav_dm_sec .sub_houses, .nav_dm_sec .sub_life, .announce_w, .announce_h .link_1, .form_bls_w, .nav_add_bl img, .side_pad aside img, .nav_dm .lvl_1_act .lvl_1_bl, .lvl_2 .ie_r, .nav_dm .lvl_2 li');


// window resize (min/max width)
	
	var winw = jQuery(window);
	var width = 0;
	var re_el = jQuery('.page_w');
	
	width = winw.width();
	if (width < 980) {
		re_el.css('width', '960');
	} else if (width > 1240) {
		re_el.css('width', '1240');
	}

	winw.resize(function() {
		width = winw.width();
		if (width < 980) {
			re_el.css('width', '960');
		} else if (width > 1240) {
			re_el.css('width', '1200');
		} else {
			re_el.css('width', width - 40 + 'px');
		}
	});

}

