$(document).ready(function () {

    if (!$.support.htmlSerialize && !$.support.opacity)  // IE detection
    {

        //$(".contentMain").corner("5px");
		//$(".contentMain").corner("5px");

    }

    if ($("#radioListAffiliates").length > 0) {

        $("#radioListAffiliates input:radio").click(function (evt) {
           
            $("#radioListAffiliates input:radio").prop("checked", false);
            $(this).prop("checked", true);
        });
    }
	$('.accordion .content').hide();
	$('.accordion h2').click(function() {
		$(this).next().slideToggle('medium');
		return false;
	}).next().hide();

});
