$(document).ready(function(){
	
	$("#landing_menu li:first").addClass("selected");
	$("#boxes div").hide();
	$("#boxes div:first").show();
	
	$("#landing_menu a").hover(function(){
		
		$("#landing_menu li").removeClass("selected");
		$(this).parent().addClass("selected");
		var largePath = $(this).attr("rel");
		$("#boxes").children("div").hide();
		$('div#' + largePath + '').show();
		
	}, function() {
		// empty function for 'hover-out' to prevent errors in IE
	});						
	
});
