// front page showcase swaps

$(function(){

	//showcase block 1
	
	$("#showcase1 .block-controls li a.one").click(function(){
			
		$('#showcase1 .showcaseImg1').fadeIn("slow");
		$('#showcase1 .showcaseImg2').fadeOut("slow");
		$('#showcase1 .showcaseImg3').fadeOut("slow");
				
		$("#showcase1 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});	
	
	$("#showcase1 .block-controls li a.two").click(function(){
		
		$('#showcase1 .showcaseImg1').fadeOut("slow");
		$('#showcase1 .showcaseImg2').fadeIn("slow");
		$('#showcase1 .showcaseImg3').fadeOut("slow");
				
		$("#showcase1 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});	
	
	$("#showcase1 .block-controls li a.three").click(function(){
		
		$('#showcase1 .showcaseImg1').fadeOut("slow");
		$('#showcase1 .showcaseImg2').fadeOut("slow");
		$('#showcase1 .showcaseImg3').fadeIn("slow");
				
		$("#showcase1 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
	//showcase block 2
	
	$("#showcase2 .block-controls li a.one").click(function(){
			
		$('#showcase2 .showcaseImg1').fadeIn("slow");
		$('#showcase2 .showcaseImg2').fadeOut("slow");
		$('#showcase2 .showcaseImg3').fadeOut("slow");
				
		$("#showcase2 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
	$("#showcase2 .block-controls li a.two").click(function(){
		
		$('#showcase2 .showcaseImg1').fadeOut("slow");
		$('#showcase2 .showcaseImg2').fadeIn("slow");
		$('#showcase2 .showcaseImg3').fadeOut("slow");
				
		$("#showcase2 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
	$("#showcase2 .block-controls li a.three").click(function(){
		
		$('#showcase2 .showcaseImg1').fadeOut("slow");
		$('#showcase2 .showcaseImg2').fadeOut("slow");
		$('#showcase2 .showcaseImg3').fadeIn("slow");
				
		$("#showcase2 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
	//showcase block 3
	
	$("#showcase3 .block-controls li a.one").click(function(){
			
		$('#showcase3 .showcaseImg1').fadeIn("slow");
		$('#showcase3 .showcaseImg2').fadeOut("slow");
		$('#showcase3 .showcaseImg3').fadeOut("slow");
				
		$("#showcase3 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
	$("#showcase3 .block-controls li a.two").click(function(){
		
		$('#showcase3 .showcaseImg1').fadeOut("slow");
		$('#showcase3 .showcaseImg2').fadeIn("slow");
		$('#showcase3 .showcaseImg3').fadeOut("slow");
				
		$("#showcase3 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
	$("#showcase3 .block-controls li a.three").click(function(){
		
		$('#showcase3 .showcaseImg1').fadeOut("slow");
		$('#showcase3 .showcaseImg2').fadeOut("slow");
		$('#showcase3 .showcaseImg3').fadeIn("slow");
				
		$("#showcase3 .block-controls li a").removeClass('active');
		$(this).addClass('active');
	
		return false;

	});
	
});
