$(function(){
	// # Add classes to div.posts
	if(exists($('div.posts'))){
		$('div.posts div.post-title:first').addClass('first-of-type');
		$('body.paged div.posts div.post:last').addClass('last-of-type');
	}

	if(exists($('div.right ul li'))){
		$('div.right ul li ul li:last').addClass('last-child');
	}
	
	$('a.cancel').click(function(){
		url = document.referrer;
		if(url.indexOf('ertc.org') != -1){
			history.go(-1);
		} else {
			window.location('/');
		}
		return false;
	});
	
});

// # Utilities
function exists(element){
	return (element.length > 0) ? true : false;
}
