$(document).ready(function() {
	var myPic = new Image();
	myPic.src = $('div.frame img').attr('src');
	var myHeight = myPic.height - 10 ;
	var myWidth = myPic.width - 10 ;
	$('div.overlay').css("height", myHeight);
	$('div.overlay').css("width", myWidth);
	
	$('a.tooltip-trigger').click( function() {
		$('div.popup1').hide(); 
		$($(this).next('div.popup1')).fadeIn(); 
		var position = $(this).parents('.content-item').position(); 
		$(this).next('div.popup1').css( {"left" :  position.left + 50 } );
		return false; 
	});
	
});

