$(document).ready( function() {	
	$('li.page-item-1 a').colorbox( 
		{
			iframe: true,
			width: 800, 
			height: 650
		} 
	);
	
	$('li.page-item-2 a').colorbox( 
		{
			iframe: true,
			width: 800, 
			height: '75%'
		} 
	);
	
	$('li.page-item-3 a').click( function() {
		window.open( $(this).attr('href') );
		return false;
	} );
} );
