$(document).bind('cbox_complete', cbox_complete);

$('.mainlink').live('click mouseover mouseout', function(event) {
	if(event.type == 'click') {
		var goto = $(this).text();
		$.fn.colorbox({
			transition:'fade',
			title:goto,
			href:'show.php?type='+goto.substr(4),
			initialWidth:'15%',
			initialHeight:'20px',
			width:'90%',
			height:'80%',
			overlayClose:false
		});
	} else if(event.type == 'mouseover') {
		$(this).css({
			fontWeight:'bold',
			letterSpacing:'3px'
		});
	} else {
		$(this).css({
			fontWeight:'normal',
			letterSpacing:'normal'
		});
	}
});

$('.filelist_unviewed_file').live('click', function() {
	var thumb = $(this).attr('src').split('&');
	$('#filelist_viewer').html('<img src="'+thumb[0]+'&h=200" />');
});

function cbox_complete() {
	$('#filelist_unviewed, #filelist_viewer, #filelist_viewed').height($('#cboxLoadedContent').height());
}

