$(document).ready(function () {

    if (!$.browser.opera) {

        // select element styling
        $('select.select').each(function () {
            var title = $(this).attr('title');

            //var selectWidth = $(this).width();
            //if (!$.browser.msie) { selectWidth = selectWidth +16 };
            if ($('option:selected', this).val() != '') title = $('option:selected', this).text();
            $(this).css({ 'z-index': 10, 'opacity': 0, '-khtml-appearance': 'none' })
            //.after('<span class="select" style="width:' + selectWidth + 'px;">' + title + '</span>')
				.after('<span class="select">' + title + '</span>')
				.change(function () {
				    val = $('option:selected', this).text();
				    $(this).next().text(val);
				});
        });
    };
});

