$(document).ready(function() {
	$(".Solution_BoxInner").biggerlink();
	$(".Solution_BoxInner").hover(function () {
  		$(this).css({ backgroundColor:"#6d695e" });
  	}, function () {
		$(this).css({ backgroundColor:"#948e7c" });
	});
	$(window).unload(function(){
		$(".Solution_BoxInner").css({ backgroundColor:"#948e7c" });
	});
	
	$(".Support_BoxInner").biggerlink();
	$(".Support_BoxInner").hover(function () {
  		$(this).css({ backgroundColor:"#6d695e" });
  	}, function () {
		$(this).css({ backgroundColor:"#948e7c" });
	});
	$(window).unload(function(){
		$(".Support_BoxInner").css({ backgroundColor:"#948e7c" });
	});
	
	$(".Works_BoxInner").biggerlink();
	$(".Works_BoxInner").hover(function () {
  		$(this).css({ backgroundColor:"#6d695e" });
  	}, function () {
		$(this).css({ backgroundColor:"#948e7c" });
	});
	$(window).unload(function(){
		$(".Works_BoxInner").css({ backgroundColor:"#948e7c" });
	});

});

