$(document).ready(function(){

for (var i = 1; i <= limitPhotos; i++) 
	if (photosId[i]) {
		$('.stars_' + photosId[i]).rater('scripts/photos_ratings.php?id=' + photosId[i], {
			maxvalue: 5,
			style: 'basic',
			curvalue: midVotes[i]
		});
		click('img.nr_'+photosId[i],photosId[i]);
	}
	
	function click(jqObiect,photo_id){
		$(jqObiect).click(function(){
			 $.ajax({
			   type: "GET",
			   url: "scripts/clicks.php",
			   data: "photo_id="+photo_id,
			   success: function(msg){
			    //console.log('good');
			   }
			 });
		});
	}
	
	$('a.bwGal').zoomimage({
		border: 4,
		centered: true,
		hideSource: true
	});
});



