var re_tagExCC_end = /^<\!\[endif\]-->/i;
var re_tagExCC_begin = /$<\!--\[if IE\]>/i;

function lateLoadActiveContent(i)
{
	// We need to strip out the end of the first conditional comment and the beginning of the second
	$(this).before(this.innerHTML.replace(re_tagExCC_end, '').replace(re_tagExCC_begin, ''));
}

// Standard "run when DOM is ready" code that relies on jQuery
$(document).ready(function(){
	//$('noscript.active-content-embed').each(lateLoadActiveContent);
	//$('#biffertbrand > img').hide().slideDown(1500);
	$('#portfolio > a').attr('target', '_blank');
	$('#portfoliomore > a').attr('target', '_blank');
});
