/* TF2Lobby.com
 * Copyright 2010 Ryan "FLOOR_MASTER" Mannion. All rights reserved.
 * The contents of this file may not be used in any other context than
 * tf2lobby.com without permission
 */

$(document).ready(function(){$("#matchOptions > select").change(function(c){var b=this.id;var a=$(this).find("option:selected").val();$('#matchOptions > select[id!="'+b+'"]').each(function(){$(this).find("option:first").attr("selected","selected")});$("#matchOptionDescriptions").fadeOut("fast",function(){$("#matchOptionDescriptions > :not(."+b+")").hide();$("#matchOptionDescriptions > ."+b+'[id!="'+a+'"]').hide();$("#matchOptionDescriptions > :not(."+b+"):not([id])").hide();$("#matchOptionDescriptions > ."+b+":not([id])").fadeIn();$("#matchOptionDescriptions").fadeIn("fast",function(){$("#matchOptionDescriptions > ."+b+'[id="'+a+'"]').fadeIn()})})})});