$(document).ready(function(){
	
	$('#homeBottom #col3').mouseenter(function(){ arrowUp(); });
	$('#homeBottom #col3').mouseleave(function(){ $('#homeBottom #col3 .arrow').stop().animate({ 'top':'12px', 'right':'17px' },350); });
	
	$('#homeDisplay ul').anythingSlider({
		width			: 900,
		height			: 335,
		autoPlay		: true,
		pauseOnHover	: false,
		hashTags		: false,
		delay			: 3750,
		easing			: 'jswing',
		animationTime	: 700
	});
	$(".start-stop").remove();
	
});


function arrowUp(){
	$('#homeBottom #col3 .arrow').animate({ 'top':'5px', 'right':'5px' }, 450, function(){ arrowDown(); });
}


function arrowDown(toDo){
	$('#homeBottom #col3 .arrow').animate({ 'top':'12px', 'right':'17px' }, 450, function(){ arrowUp(); });
}
