$(document).ready(function() {
						   
	$("#feature-1").show(500);   
						   
	// FEATURE PICKER
	// switch left border of <li> element on click - obtain id of selected <a> tag
	$("a.featureNav").click(function() {
		$("a.featureNav").each(function (i) {
			$("a.featureNav").parent().removeClass("active");
		});
		
		$(this).parent().addClass("active");
		id = $(this).attr('href').slice(1);
		
		$("div.featureBox").each(function (i) {
			$(this).hide();
			if($(this).attr('id') == id) {
				$(this).fadeIn(500);
			}					
		});
		
	});	

});