var arrActiveBlockContent = new Array();

function hpdeal_swapcontent(blockRef, contentRef)
{
	if( !arrActiveBlockContent[blockRef] )
	{
		for( i=1; i<=5; i++ )
		{
			$('#hpdeal_b'+blockRef+'_l'+i).removeClass('navHighlight');
		}
	}
	
	$('#hpdeal_b'+blockRef+'_l'+contentRef).addClass('navHighlight');
	
	if( arrActiveBlockContent[blockRef] != contentRef )
	{
		$('#hpdeal_b'+blockRef+'_l'+arrActiveBlockContent[blockRef]).removeClass('navHighlight');
		$('#hpdeal_b'+blockRef+'_contentdisplay').stop(1,1);
		$('#hpdeal_b'+blockRef+'_contentdisplay').hide();
		$('#hpdeal_b'+blockRef+'_contentdisplay').html($('#hpdeal_b'+blockRef+'_c'+contentRef).html());
		$('#hpdeal_b'+blockRef+'_contentdisplay').fadeIn("fast");
	}
	
	arrActiveBlockContent[blockRef] = contentRef;
}