/**
 * @author Trent
 */
$(document).ready(function(){
	var selected;

	$('.home_button').click(function(){
		$('.home_button').each(function(){
			$(this).attr('src','/images/home_'+$(this).attr('id')+'.jpg');
		});
		$('.center_box').hide();
		if ($(this).attr('id') == 'build') 
		{
			selected='build';
			$(this).attr('src','/images/home_'+$(this).attr('id')+'_sel.jpg');
			$('#build_box').show();
			$('#arrow').animate({
				marginLeft: '0px'
			}, 'slow');
		}
		if ($(this).attr('id') == 'share') {
			$(this).attr('src','/images/home_'+$(this).attr('id')+'_sel.jpg');
			selected = 'share';
			$('#share_box').show();
			$('#arrow').animate({
				marginLeft: '125px'
			}, 'slow');
		}
		if ($(this).attr('id') == 'grow') {
			selected = 'grow';
			$(this).attr('src','/images/home_'+$(this).attr('id')+'_sel.jpg');
			$('#grow_box').show();
			$('#arrow').animate({
				marginLeft: '250px'
			}, 'slow');
		}

	}).hover(function(){
		$(this).attr('src','/images/home_'+$(this).attr('id')+'_sel.jpg');
	},function(){
		if(selected != $(this).attr('id'))
		$(this).attr('src','/images/home_'+$(this).attr('id')+'.jpg');
	});
	
	
	
	
});

