// Colorbox settings
$(function() {
	$("a[rel='colorbox']").colorbox({iframe:true, scrolling:false, initialWidth:100, initialHeight:100, 
		innerWidth:(function() {
				   var theRev = $.trim($(this).attr('rev'));
				   return theRev.substring( theRev.indexOf(":")+1, theRev.indexOf(" ") ) + 'px';
				}), 
		innerHeight:(function() {
					var theRev = $.trim($(this).attr('rev'));
					return theRev.substring( theRev.indexOf(":", 6)+1, theRev.length ) + 'px';
				})
		});
});
