$(function(){
		   
		   $('.downlink2').click(function(){
			title1 = $(this).attr('title').replace('&','-');
			CurRel = $(this).attr('rel').replace('&','-');
			title1 = $.trim(title1);
			name1 = $(this).attr('name');	
			name1 = $.trim(name1);
			var datastring = '';
		    datastring = "ntitle="+ title1 + "&nid=" + name1 + "&currel=" + CurRel;	
			temppath = $('.logo_img').attr('rel'); 
		    $.ajax({
				type: "POST",
				url: temppath + "/countdown.php",
				data: datastring,
				success: function(msg){
				   // $('#message_download').html(msg);		
            }

		 });	
		   return false; 
		  });
});




