// --------------------08262011--------------------------- //

jQuery(document).ready(function(){
    var eb=parseInt(jQuery(".earlybird").text());
    var s=parseInt(jQuery(".standard").html());
	//var gsteb=(eb*.10)+eb;
	//var gsts=(s*.10)+s;
	var gsteb=eb;
	var gsts=s;

// to display amount beside each radio button
 jQuery(".lbl_early").append(" - <strong>$"+eb+"</strong>");
 jQuery(".lbl_standard").append(" - <strong>$"+s+"</strong>");

// remove radio early bird if expired
if(jQuery(".lbl_early strong").html() == "$NaN"){
        jQuery(".lbl_early").remove();
        jQuery("#CAT_Custom_192070_0").remove();
        jQuery("#CAT_Custom_192070_1").attr("checked","checked");
        jQuery("#Amount").val(s);
}

// Amount
    jQuery("input[name='CAT_Custom_192070']").click(function(){
    var a = jQuery(this).attr("checked");
    if(a==true){
        if(jQuery(this).val()=="Early Bird"){
          jQuery("#Amount").val(gsteb);
        }
        else{
          jQuery("#Amount").val(gsts);
        }
     }
    });
});
