gallery = 1;

$(document).ready(function(){
	rated_images = 0;
	
   $(".imageThumb").hover(
      function () {
        $(this).animate ({
			width:"110px",
			left: "-=10px",
			top: "-=10px"
		},200);
      }, 
      function () {
        $(this).animate ({
			width: "90px",
			left: "+=10px",
			top: "+=10px"
		},200);
      }
    );
	//    $(".imageThumb").click(
	// 	function () {
	// 		// 	        $(this).animate ({
	// 		// 	width: "90px",
	// 		// 	left: "+=10px",
	// 		// 	top: "+=10px"
	// 		// },200);
	// 	}
	// );
	
	$('.imageButton').lightBox();
	// if ($('.middleBoxBig').length) {
	// 	$(function() {
	//         $('.imageButton').lightBox();
	//     });
	// }

	
	
});

function move_to_folder(image_PK, folder_PK) {
	if (image_PK && folder_PK) {
		$.get('/move_image.php?pictures_PK='+image_PK+'&pictures_category='+folder_PK);
	}
}

function delete_image(image_PK) {
	$.get('/pages/deleteImage.php?pictures_PK='+image_PK);
}

