$(document).ready(function(){
	$(".fpSearch select, .calendar .calNavSelects select").styledSelect();
});

$.fn.styledSelect = function(){
	return this.each(function(){
		var select = $(this);
		var control;
		
		select.css("float", "left").css("opacity", "0").css("position", "relative").after('<div class="select"><span>Выбор</span></div>');
		
		control = select.next();
		
		control.css("float", "left").css("marginLeft", -select.width() + "px").
			css("width", select.width() - parseInt(control.css("paddingLeft")) - parseInt(control.css("paddingRight")) + "px").
			addClass(select.attr("class") + "Dummy");
		
		select.change(setText);
		setText();
		
		function setText() {
			control.find("span").html(select.find("option:selected").html());
		}
		
	});
};

