$(function(){
	
	$("a[rel='modalbox-group']").click(function(){
		$.fn.colorbox({
			opacity: 0.7, 
			rel: 'nofollow', 
			iframe: true, 
			scrolling: false, 
			open: true, 
			width: $(this).attr('width') || 550, 
			height: $(this).attr('height') || 610, 
			href: $(this).attr('href')
		});
		return false;
	});	
	
});	
