// JavaScript Document
$(document).ready(function(){
	$('#popupwin2Img').bind('load', function() {
		$('#popupwin2').css('height', $('#popupwin2Img').height());
		$('#popupwin2').css('width', $('#popupwin2Img').width());
	});
	$('.expertPhoto').mouseenter(function() {
		var imgName = '/data/images/experts/' + $(this).attr('id');
		$('#popupwin2').show();	
		$('#popupwin2Img').attr('src', imgName);
		$('#popupwin2').css('left', $(this).offset().left);
		$('#popupwin2').css('top',  $(this).offset().top - $('#popupwin2').height() - 10);
	});
	$('.expertPhoto').mouseout(function() {
		$('#popupwin2').hide();	
	});
	
});
