$(document).ready(function(){
	
	$("#tabs li:first").addClass("selected");
	$("#boxes div").hide();
	$("#boxes div:first").show();
	
	$("#tabs a").hover(function(){
		
		$("#tabs 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
	});						
	
});
