$(document).ready(function() {
	
	// set up colorbox
	$('a.colorbox').colorbox({width:640, height:500});
	
	// cycle through all a tags with colorbox element and append type=cb to the end. 
	// this will allow pages to open with a different template
	
	$('a.colorbox').each(function() {
		var href = $(this).attr('href');
		$(this).attr('href', href + '?type=cb');
	});


});


