$(document).ready(function(){

	$("a.comments").click(function(){
		//alert("click");
		var id = $(this).attr("title");
		$("#sendComment_"+id).toggle();
	});
	
	$(".send").click(function(){
	var idnews = $(this).attr("title");
	$.ajax({
url: 'http://www.madsondiscount.com/ajaxComment.php',
dataType:'text',
type: 'POST',
data: 'name='+$("#name_"+idnews).val()+'&email='+$("#email_"+idnews).val()+'&comment='+$("#commentText_"+idnews).val()+"&news_id="+idnews,
  success: function(data) {
    
    //alert(data);
    //$("#sendComment_"+idnews+" form").toggle();
    //var str = data.find("Error");
   /*
 alert(data);
    if(str){
    	alert("error");
    }else{
    	//do nothing
    }
*/
//var thing = {plugin: 'jquery-json', version: 2.2};


    $('#result_'+idnews).html(data);
  },
error: function(e, type)
{
alert(e+' '+type);
}
});
	
	});
	
	$('.rollover').mouseover(function(){ $(this).fadeTo('fast', 0.7, function(){});});
	$('.rollover').mouseout(function(){$(this).fadeTo('fast', 1, function(){});});

});