jQuery(document).ready(function() 
{
	jQuery('.up-window-item').hover(
		function() {
            item_top = jQuery(this).offset().top;
            item_left = jQuery(this).offset().left;		
            item_width = jQuery(this).width();
            ttt = jQuery("#up-window");
			ttt_width = ttt.height();
			
   		 	ttt.css({'left': item_left - 20, 'top': item_top - ttt_width + 5});
            ttt.show();
		}
		,
		function() {
			jQuery('.up-window').hide();
		}
	);
	ttt = jQuery('#up-window').hover(
		
		function() {
            ttt.show();
		}
		,
		function() {
			jQuery('.up-window').hide();
		}
	);
});
