// INIT
jQuery.noConflict();

// DOCUMENT READY
jQuery(document).ready(function() {
	// IE6 CACHE BACKGROUND IMAGES / NO FLICKER
	if(jQuery.browser.msie) {
		try {
			document.execCommand("BackgroundImageCache", false, true);
		} catch(err) {}
	}
	// INCLUDE COLORBOX
	jQuery('[box="true"]').each(function() {
		var hrefdata = jQuery(this).attr('href');
		jQuery(this).colorbox({
			inline: true,
			opacity: 0.7,
			initialWidth: 30,
			initialHeight: 30,
			overlayClose: false,
			onOpen: false,
			onLoad: false,
			onCleanup: colorbox_cleanup,
			onComplete: false,
			onClosed: false,
			href: hrefdata
		});
	});
});

function colorbox_cleanup() {
	var obj = jQuery(jQuery.fn.colorbox.element()).attr('boxfunction');
	window[obj]();
}
