/*
* Coded By PM @ GreenLabsMx
* April 2010
*/
$(function(){

	$("img#greenCont").click(function(){
		$("div#infoContainer").animate({
			"left": "0px"
			}, 'slow', 'easeInOutBack'
		);
		$("div#arrow img#arr").animate({
			"left": "66px"
			},'slow'
		);
	});
	
	$("img#devCont").click(function(){
		$("div#infoContainer").animate({
			"left": "-991px"
			}, 'slow', 'easeInOutBack'
		);
		$("div#arrow img#arr").animate({
			"left": "264px"
			},'slow'
		);
	});
	
	$("img#markCont").click(function(){
		$("div#infoContainer").animate({
			"left": "-1982px"
			}, 'slow', 'easeInOutBack'
		);
		$("div#arrow img#arr").animate({
			"left": "464px"
			},'slow'
		);
	});
	
	$("img#psdCont").click(function(){
		$("div#infoContainer").animate({
			"left": "-2973px"
			}, 'slow', 'easeInOutBack'
		);
		$("div#arrow img#arr").animate({
			"left": "657px"
			},'slow'
		);
	});
	
	$("img#sustCont").click(function(){
		$("div#infoContainer").animate({
			"left": "-3964px"
			}, 'slow', 'easeInOutBack'
		);
		$("div#arrow img#arr").animate({
			"left": "857px"
			},'slow'
		);
	});
});
