function resize_image_boxes () {
	var box_width_right = $('.inline-image-right img').width();
	var box_width_left = $('.inline-image-left img').width();
	var box_width_full = $('.inline-image-full img').width();
	$('.inline-image-right').width(box_width_right);
	$('.inline-image-left').width(box_width_left);
	$('.inline-image-full').width(box_width_full);
}


$(document).ready(function(){

	/* article inline content show/hide */	
	//hide content initially
	$('.title').parent().children('.content').hide();
	$('.title').parent().children('.sidebar-top').hide();
	$('.title h4').prepend('<span class="expand-up">+</span>');

	//event listener to show content
	$('.title').click(function(){

		if ($(this).children('h4').children('span').hasClass('expand-up')) {
			
			$(this).children('h4').children('span.expand-up').remove();
			$(this).children('h4').prepend('<span class="expand-down">-</span>');
			
		}else if ($(this).children('h4').children('span').hasClass('expand-down')) {
			
			$(this).children('h4').children('span.expand-down').remove();
			$(this).children('h4').prepend('<span class="expand-up">+</span>');
		
		};
		
		$(this).parent().children('.sidebar-top').animate({height: 'toggle', opacity: "toggle"}, 'fast');
		$(this).parent().children('.content').animate({height: 'toggle', opacity: "toggle"}, 'normal');
	});
	
	//add thickbox to article image links
	$('.inline-image-left a').addClass('thickbox');
	$('.inline-image-right a').addClass('thickbox');
	$('.inline-image-full a').addClass('thickbox');
	$('a.icon').addClass('thickbox');
	
	/*adjust window size for IE6
	if (!$.support.boxModel) {
		$('a.email').attr('href','email.aspx?height=500&width=300')
	}*/
	
	//adjust the height of the sidebar
	if ($('#sidebar').height() < 688) {
		$('#sidebar').height(688);		
	}
	
	//add event listeners for print functionality
	$('a.print').click(function(){
		
		//show all sidebars
		$('.title').parent().children('.content').show();
		$('.title').parent().children('.sidebar-top').show();
		
		//print via the browser
		window.print();
	});
	
	/* sIFR */
	if(typeof sIFR == "function"){
		sIFR.replaceElement(named({
			sSelector      : '.sifr-title',
			sFlashSrc      : '/tdmo/tdmo_assets/tdmo_flash/helvetica_cond_bold.swf',
			sColor         : '#333333',
			sLinkColor     : null,
			sBgColor       : '#ff0000',
			sHoverColor    : null,
			nPaddingTop    : 0,
			nPaddingBottom : 0,
			sFlashVars     : 'textalign=left&offsetTop=0',
			sWmode         : 'transparent'
		}));

		sIFR.replaceElement(named({
			sSelector      : '.sifr-title-full',
			sFlashSrc      : '/tdmo/tdmo_assets/tdmo_flash/helvetica_cond_bold.swf',
			sColor         : '#333333',
			sLinkColor     : null,
			sBgColor       : '#ff0000',
			sHoverColor    : null,
			nPaddingTop    : 0,
			nPaddingBottom : 0,
			sFlashVars     : 'textalign=left&offsetTop=0',
			sWmode         : 'transparent'
		}));

		sIFR.replaceElement(named({
			sSelector      : '.series',
			sFlashSrc      : '/tdmo/tdmo_assets/tdmo_flash/arial_cond_bold.swf',
			sColor         : '#5b8096',
			sLinkColor     : null,
			sBgColor       : '#ffffff',
			sHoverColor    : null,
			nPaddingTop    : 0,
			nPaddingBottom : 0,
			sFlashVars     : 'textalign=left&offsetTop=0',
			sCase		   : 'upper',
			sWmode         : 'transparent'
		}));
	};

	/* resize image divs */
	resize_image_boxes();

});