$(document).ready(function(){
						   
	$('#farm-management').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
		$("#farm-management-rollover").show(); 
	}, function() {
		$(".cover", this).stop().animate({top:'-165px'},{queue:false,duration:500});
		$("#farm-management-rollover").hide();
	});
	
	$('#fleet-performance').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
		$("#fleet-performance-rollover").show(); 
	}, function() {
		$(".cover", this).stop().animate({top:'-165px'},{queue:false,duration:500});
		$("#fleet-performance-rollover").hide();
	});
	
	$('#spreading-placement').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
		$("#spreading-placement-rollover").show(); 
	}, function() {
		$(".cover", this).stop().animate({top:'-165px'},{queue:false,duration:500});
		$("#spreading-placement-rollover").hide();
	});
	
	$('#spraying-and-mowing').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
		$("#spraying-and-mowing-rollover").show(); 
	}, function() {
		$(".cover", this).stop().animate({top:'-165px'},{queue:false,duration:500});
		$("#spraying-and-mowing-rollover").hide();
	});
	
	$('#ruc-rebates').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
		$("#ruc-rebates-rollover").show(); 
	}, function() {
		$(".cover", this).stop().animate({top:'-165px'},{queue:false,duration:500});
		$("#ruc-rebates-rollover").hide();
	});
	
	$(document).ready(function() {				   
		//Hide (Collapse) the login box container
		$("#client-login-box").hide();
	
		//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
		$("div#client-login-button").click(function(){
			$("#client-login-box").slideToggle("medium");
		});
		
	});

});
