jQuery(document).ready(
		function()
		{
			jQuery('.gamer-info .image-container img').corner('6px');
			
			command_initSelect();
		}
);

function command_initSelect()
{
	jQuery('#command-gamer-select').change(
			function()
			{
				window.location.href = jQuery(this).val().replace('span','option');
				return false;
			}
	);
}


