$(document).ready(function() {
	
	$('.sidecol-item .title, .sidecol-item .text').bind('click',function(){
		
		content = $(this).parent().children('.popup-content');

		$.each(content, function(index,val){
			popup_data = $(val).html();
			popup_data = popup_data.replace('<p>&nbsp;</p>','');
			$('#popup-container-content').html(popup_data);
			$('#popup-container-content p:empty').remove();
			win_width = 980;
			win_height = $(window).height();
			
			popup_width = $('#popup-container').width();
			popup_height = $('#popup-container').height();
			
			popup_left = (win_width-popup_width)/2;
			popup_top = ((win_height-popup_height)/2)+$(document).scrollTop();
			
			$('#popup-overlay').show();
			$('#popup-container').css('left',popup_left).css('top',popup_top).show();
						

		});
	}
	);
	
	
	$('#popup-nav').bind('click',function(){
		$('#popup-overlay').hide();
		$('#popup-container').hide();
		$('#popup-container-content').html('');
	});

	$('#popup-overlay').bind('click',function(){
		$(this).hide();
		$('#popup-container').hide();
		$('#popup-container-content').html('');
	});
		       
});


