$(function(){
	
	$('#find-app-h3').prepend("<a href='#'>Reset</a>");
	
	$('#find-app-h3 a').click(function(){
		$('.state').hide();
		$('#state-1').show();
		return false;
	}).click();
		   
	$('.state').hide();
	$('#state-1').show();
	
	$('#state-1 a, #state-2 a, #state-3 a, #state-4 a, #state-5 a, #state-6 a').click(function(){
		newContent = $(this).attr('href');
		if($(this).attr('href')=="#products"){
			newClass = $(this).attr('class');	
			$(this).closest('.state').fadeOut('300',function(){
				$(newContent).removeClass('prod-1 prod-2 prod-3 prod-4 prod-5 js-off').addClass(newClass).fadeIn('300');
		   });
		}else{
			$(this).closest('.state').fadeOut('300',function(){
				$(newContent).fadeIn('300');
			});
		}
		return false;
	});
});