$(document).ready(function(){
	colorboxAllLinks();
});

function colorboxAllLinks() {
	$(".colorbox").colorbox({
		iframe:true,
		transition:'elastic',
		speed:500,
		width:800,
		height:600,
		opacity:0.33,
		overlayClose:true
	});
	$(".colorboxSmall").colorbox({
		iframe:true,
		transition:'elastic',
		speed:500,
		width:600,
		height:400,
		opacity:0.33,
		overlayClose:true
	});
	$(".colorboxSendMail").colorbox({
		iframe:true,
		transition:'elastic',
		speed:500,
		width:340,
		height:480,
		opacity:0.33,
		overlayClose:false
	});
	$(".colorboxLogin").colorbox({
		iframe:true,
		transition:'elastic',
		speed:500,
		width:280,
		height:280,
		opacity:0.33,
		overlayClose:false
	});
}
