 jQuery(document).ready(function(){ 
 			
	
 	$("button").click(function(){
 	var checked = $("form input:radio:checked").val();
 	var output = $("#box");
 	output.css({'color' : '#F00', 'margin-top' : '0', 'padding' : '0' });
 		
 	//output.html(checked);
 	if(checked == '100000'){
 		 output.html("<p>It will cost you about <a href='http://www.etsy.com/view_listing.php?listing_id=36036920&ref=cat2_gallery_9'>100K!</a></p>");
 		 //$("#box").add("a").html("test what the hell");
 		 //$("#box").add("img");
 	}else{
 		//output.html(checked);
		output
		.html(checked)
		.css('opacity', '0')
		.animate({opacity:1}, "slow");
 		
 	}//closing tag for if statement	
 		
 	});//closing tag for button click
 
 })//closing tag for jQuery contructor




