$('.comments').click(function() {
  $('#comments_'+this.id).toggle();
  setBG();
});



function saveComment(news_id){
	
	var name = $('#name'+news_id).val();
	var email = $('#email'+news_id).val();
	var comment = $('#comment'+news_id).val();
	var ip = $('#ip'+news_id).val();
	var date = $('#date'+news_id).val();
	
	$.ajax({  
		type: "GET",
		url: "php/comments.php",
		data: 'comment&news_id='+news_id+'&name='+name+'&email='+email+'&comment='+comment+"&ip="+ip+"&date="+date,
		success: function(msg){
			$('#comment_form'+news_id).text('');
			$('#comment_form'+news_id).append('Thank you! Your comment has been submitted. Once it\'s approved it will be displayed.');

		}
	});
	
}
