$(document).ready(function(){

	// Add rounded corners on main images
	$('#unit-page-header img').addClass("corners iradiae0001 iradius72");

	// And round list images
	if( $('body').hasClass('template-news-list') || $('body').hasClass('template-science-stream') || $('body').hasClass('template-production-list') ) {
		$('.unit-list .thumbnail img').addClass("corners iradiae0001 iradius48");
	} else if( $('body').hasClass('template-homepage') ) {
		$('.unit-list .thumbnail img').addClass("corners iradiae0001 iradius17");
	} else {
		$('.unit-list .thumbnail img').addClass("corners iradiae0001 iradius34");
	}
	
	$('.thumbnail.avatar img').addClass("corners iradiae0001 iradius34");
	
	// And round the homepage feature
	$('#unit-main-feature .feature img').addClass("corners iradiae0001 iradius76");

	// Open external links in a new window
	$("a[href^='http:']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function(){
		$(this).attr('target','_blank');
	});
	
	// Hide everything but the 2 latest years on the archives
	$('#unit-archives > ul > li h3').click(function() {
		$(this).parent().find('ul').slideToggle();
	}).css('cursor','pointer');
	$('#unit-archives > ul > li:gt(1) ul').hide();

	// Hide the upcoming events if the page is too long
	if( $('#primary-content').height() < 1000 ) {
		$('#secondary-content #unit-upcoming-events').hide();
	}
	
	// If the first paragraph in a content area is just an image, add a first class to the second one
	$('#unit-content').find('p img:only-child').parent().css('margin-bottom',0).removeClass('first').siblings('p').filter(':first').addClass('first');

});

