$(document).ready(function(){
	$('.remove_extra_file').click(function(event) {
		event.preventDefault();
	});

	if($('#file_rating_block').length > 10) {
		$('body').click(function() {
			$('#rating_div').hide('fast');
		});
		$('.uploaded_image').css('width', $('.uploaded_image').css('width')).css('margin', '0 auto');
		$('#rating_div').html($('#file_rating_block').html());
		$('#rating_div').css('position', 'absolute').css('display', 'none').css('border-right', '2px dashed #f2f2f2').css('border-bottom', '2px dashed #f2f2f2').css('background-color', '#08CF5A').css('padding', '5px').css('width', '200px');

		$('.uploaded_image').hover(
		function(event) { // hover over
	/*		$(this).css('border', '2px solid #bb22dd');*/
			var offset = $(this).offset();
			$('#rating_div').css('left', offset.left+5).css('top', offset.top+5).show('fast');
		},
		function() { // hover out
	/*		$(this).css('border', '0px');*/
/*			$('#rating_div').hide('fast');*/
		});
	
		$('#rating_div').hover(false, function(){$('#rating_div').hide('fast');});
	}
});

