$(document).ready(function() {
	$("#hand-trucks-center-content #hand-trucks-bottom-buckets #hand-trucks-bottom-buckets-bottom .hand-trucks-bucket-with-image a").mouseenter(function(){
		$(this).css("background", "url(../../images/see-more-hover.png)");
		$(this).css("color", "#9a9a9a");
	}).mouseleave(function(){
		$(this).css("background", "url(../../images/see-more.png)");
		$(this).css("color", "white");
	});
	
	$("#hand-trucks-center-content #hand-trucks-bottom-buckets #hand-trucks-bottom-buckets-bottom .hand-trucks-bucket a").mouseenter(function(){
		$(this).css("background", "url(../../images/see-more-hover.png)");
		$(this).css("color", "#9a9a9a");
	}).mouseleave(function(){
		$(this).css("background", "url(../../images/see-more.png)");
		$(this).css("color", "white");
	});
	
	$("div#below-bread-crumbs div.hand-truck a.arrow-a").mouseenter(function(){
		$(this).css("background", "url(../../images/see-more-hover.png)");
		$(this).css("color", "#9a9a9a");
	}).mouseleave(function(){
		$(this).css("background", "url(../../images/see-more.png)");
		$(this).css("color", "white");
	});
	
	
});


