$(function() {
	
	// Adjust the header image
	var header = $('#header');
	header.css('cursor', 'pointer');
	header.click(function() {
		window.location.href = '/';
	});
	
	// Shorten
	$('#cms p').shorten({
		length : 90
	});
	
	// Attach class swaps to CMS selection
	var node;
	$('.select .option').hover(function() {
		node = $(this);
		node.attr('class', 'optionHover');
	}, function() {
		node.attr('class', 'option');
	});

});
