$(document).ready(function () {


if($.browser.msie && $.browser.version < 9){
  $("input[type='text']").each(function(){
       $(this).wrap("<span class='input_msie'></span>");
  });

  $("textarea").addClass("old_MSIE_area");

}





	fixSelectMenus();
});

function fixSelectMenus()
{
	var selects = $("select");
	selects.change(function() {
		$(this).next().html(this.options[this.selectedIndex].text);
	});
	selects.css("opacity", 0);
	selects.each(function (i) {
		$(this).next().html($(this).find("option:selected").text());
	});
}

