$(document).ready(function() {	
	var root = $('h1 a').attr('href');	
/*----------------------------------------------------------------------------
	Fix IE Stuff
----------------------------------------------------------------------------*/	
	if ($.browser.msie) {
		// Hover/Focus
		$('input[type=submit]').hover(
			function() {
				$(this).addClass('hover');
			},
			function() {
				$(this).removeClass('hover');
			}
		);
		
		// Last/First Child
		$('ul#nav > li:last-child').css('border','none');
	}
	
	$('ul.larger-tiles li:nth-child(3n+2)').css({
		borderLeft:'1px solid green',
		borderRight:'1px solid green'
	});

/*----------------------------------------------------------------------------
	Open external links in a new tab/window
----------------------------------------------------------------------------*/
	
	$('a[rel=external]').click(function() {
		window.open($(this).attr('href'));			
		return false;
	});
});