var CoreColorboxObject = new Object(
	{
		transition : 'none',
		speed : 0,
		initialWidth : 70,
		initialHeight : 50,
		opacity : 0.4
	}
);
var CoreColorboxObjectOpenChild = new Object(
	{
		transition : 'none',
		speed : 0,
		initialWidth : 70,
		initialHeight : 50,
		opacity : 0.4,
		iframe : true
	}
);
jQuery(document).ready(function() {
	$('.colorboxinline').each(function() {
		var href = $(this).attr('rel');
		var html = '<div style="margin-right: 15px;">' + $(href).html() + '</div>';
		$(this).colorbox({
			html: html,
			initialWidth: 40,
			initialHeight: 40,
			speed: 250,
			overlayClose: true,
			opacity: 0.80,
			maxWidth: '90%',
			maxHeight: '90%'
		});
	});
});
