$(function(){
	
var popup = $('.popup');
popup.click(function(event){
	if(this == event.target)
		{
			var page_link = $(this).attr('href');
			window.open(page_link, '', 'width=900,height=720,resizable=yes,scrollbars=yes');
			return false;
		}
	});
	
$('#content_area').hide().delay(1000).fadeIn();

});

