// JavaScript Document

$(document).ready(function() { 	
	
	// 1 - What Image Trans
	$('#what').click(function(){
		$('.secImgs').stop().animate({
			top: '0px'
		},{
			queue:false,
			duration:500
		});
	});
	//
	
	// 2 - Services Image Trans
	$('#services').click(function(){
		$('.secImgs').stop().animate({
			top: '-296px'
		},{
			queue:false,
			duration:500
		});
	});
	//
	
	// 3 - How Image Trans
	$('#how').click(function(){
		$('.secImgs').stop().animate({
			top: '-592px'
		},{
			queue:false,
			duration:500
		});
	});
	//
	
	// 4 - Background Image Trans
	$('#who').click(function(){
		$('.secImgs').stop().animate({
			top: '-888px'
		},{
			queue:false,
			duration:500
		});
	});
	//
	
	// 5 - Why Image Trans
	$('#why').click(function(){
		$('.secImgs').stop().animate({
			top: '-1184px'
		},{
			queue:false,
			duration:500
		});
	});
	//
	

	
	
});
