// JavaScript Document
$(function(){
	var links="<div id='buttonsHolder'><hr/><br/>";
	var selected = "selected"
	$(".group").each(function(index, element) {
		if(index!=0) selected = "";
        links += '<div class="footerButton '+selected+'" id='+index+'>'+$("h5",element).text()+'</div>';
    });
	links += "</div>";
	$("#links").append(links);
	
	
	$(".footerButton").click(function(){
		
		$(".footerButton").removeClass("selected");
		$(this).addClass("selected");
		
		var order = parseInt($(this).attr("id"))+1;
		$(".group").fadeOut();
		$(".group:nth-child("+order+")").fadeIn();
		
		
	});
	
	$("#testimonial").click(function(){
		
		document.location = "testimonials";
		
	});
	$("#testimonial").hover(function(){
		$("#CDSWIDSSP").fadeTo("slow",.2);
		$(".testimonialText").fadeTo("slow",.2);
		$(".testimonialOver").fadeIn();
		
	}, function(){
		$(".testimonialText").fadeTo("slow",1);
		$("#CDSWIDSSP").fadeTo("slow",1);
		$(".testimonialOver").fadeOut();
	});
});
