$(document).ready(function(){
	$('#email_article').click(function(e){
		e.stopPropagation();
		e.preventDefault;
		$('#email_article_form').slideToggle('slow');
	});
	$('#rate_article').click(function(e){
		e.stopPropagation();
		e.preventDefault;
		$('#rate_article_form').slideToggle('slow');
	});
	
	// tell a firend
	$('#f_friends_email').change(function(e){
		e.stopPropagation();
		e.preventDefault;
		if($('#f_message').val() == ''){
			$('#f_message').val("ParentingTeensOnline is an online magazine and interactive Web site that provides practical information from experts and parents on raising teenagers. It's filled with great articles and interactive features that you can really use.");
		}
	});
	
	// sign up
	$('.why-answer').hide();
	
	$('#why-email').click(function(e){
		e.stopPropagation();
		e.preventDefault;
		$('#why-email-answer').slideToggle('slow');
	});
	$('#why-address').click(function(e){
		e.stopPropagation();
		e.preventDefault;
		$('#why-address-answer').slideToggle('slow');
	});
	$('#why-tell-about-you').click(function(e){
		e.stopPropagation();
		e.preventDefault;
		$('#why-tell-about-you-answer').slideToggle('slow');
	});
	
});
