(function($) {	
	if(jQuery.browser.msie)
	{
		$('select.fixedWidth').each(function(i,s)
		{
			s.origWidth = s.offsetWidth;			
			s.setWidth = new Number( s.className.match(/.* w(\d{1,3}).*/)[1]);				
		}).wrap('<div class="fixedWidth"></div>');
		
		$('div.fixedWidth').each(function(i,s)
		{				
			$(s).css('width', $(s).find('select.fixedWidth')[0].setWidth )
				.append('<div class="fake"><select></select></div>');
				
			$(s).find('div.fake select')
				.css({marginLeft: eval(($(s).find('select.fixedWidth')[0].origWidth-22) * -1)})
				.change(function(){
					$(s).find('select.fixedWidth')[0].selectedIndex = this.selectedIndex;
				});
				
			$(s).find('select.fixedWidth')
				.change(function(){
					$(s).find('div.fake select')[0].selectedIndex = this.selectedIndex;
				})
				.find('option')
					.clone(true)
					.appendTo( $(s).find('div.fake select') );
		});
	}	
})(jQuery);
