$(document).ready(function(){
	
	$('a.imgbox').colorbox({
		maxWidth : '90%',
		maxHeight : '90%',
		minWidth : 630,
		minHeight : 660
	});
	
	$('a.videobox').colorbox({
		width : 700,
		height : 550,
		iframe : true
	});

	$('a.newwindow').click(function(){
		window.open(this.href);
		return false;
	});
	
});
