jQuery.noConflict();

jQuery(document).ready(function () {

	jQuery('div#page_1_match').show();
    jQuery('div#page_1_match').siblings('div').hide();

	jQuery('li.swap').click(function() {

		jQuery(this).addClass('selected');
		jQuery(this).siblings('li').removeClass('selected');
		jQuery('#' + jQuery(this).attr('id').substring(0,9) + "_match").show();
		jQuery('#' + jQuery(this).attr('id').substring(0,9) + "_match").siblings('div').hide();
		

	});

});
