	
	
$(function(){
	// DONT REMOVE - fix z-index bug in IE6 and IE 7
	var zIndexNumber = 1500;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});

	// external links (_blank)
	$("a.external").live('click', function() {
		if( $(this).attr('href') != '#')
			$(this).attr('target', '_blank');
		
	});
	$("a[href^='http']").attr('target','_blank');

	

});



