// JavaScript Document
$(document).ready(function(){
	$('.img_preview').mouseover(function(){
	$('#img_preview_panel').html('');
	  preview_fajl = $(this).attr('href');
	  var position = $(this).children().position();
	//  var sirina = $(this).width;
	//alert($(this).attr('name')+' || '+position.top+'/'+position.left);
	  $('#img_preview_panel').css({top:position.top+30,left:position.left+20});
	  $('#img_preview_panel').fadeIn('fast');
	  $.get('get_preview_file.php', {src:preview_fajl, w:200,h:200}, function(data){ $('#img_preview_panel').html(data); });
	 
    }).mouseout(function(){
		//$('#img_preview_panel').css({display:'none'});
		$('#img_preview_panel').fadeOut('fast');
      //$('#img_preview_panel').html('');
    });
});
