$(function(){
	if (navigator.userAgent.indexOf('MSIE 6') > -1) {
		$('#main-nav li').hover(function(){ 
			$(this).addClass("hover");
			$('ul',this).each(function(i){
				if ($(this).width() / 16 < 12) {
					$(this).width('12em');
				}
			});	
		},function(){ 
			$(this).removeClass("hover"); 
		}).children('ul').bgiframe();
	}
});




