var urll = window.location.href;

var urll_array=urll.split('/');
var project_name=urll_array[3];
var div_id = 0;
var display_div = '';
var rating_div = '';

function vote(vote,num,id,rating_section)
{
				div_id = num;
                var replace_part = 'RATING_REPLACE_PART'+div_id;
                display_div  = 'rating_result_div'+div_id;
			    var loadUrl='http://'+location.host+'/rating.php';
				var data = 'div_section='+num+'&rating_section='+rating_section+'&news_id='+id+'&vote='+vote+'&REPLACE_ID='+replace_part;	
	
				var div_id=display_div;
				$("#"+div_id).addClass('ajax-loading');
				//start the ajax
				$.ajax({
					//this is the php file that processes the data and send mail
					url: loadUrl,	
					
					//GET method is used
					type: "GET",
		
					//pass the data			
					data: data,		
					
					//Do not cache the page
					cache: false,
					
					//success
					success: function (html) {	
					    
						document.getElementById(div_id).style.display="block";
						document.getElementById(div_id).innerHTML="";
						//alert(html);
						$("#"+div_id).html(html);
						//document.getElementById(div_id).innerHTML=html;
						$("#"+div_id).removeClass('ajax-loading');
						//$('a[rel*=modal]').facebox();
						
					}		
				});
				
				
			
	
	}
