		$(document).ready(
			function(){
				$(".support-block").hover(function(){
					$(this).animate({backgroundColor: "#74cbcb"}, 400);
					$(".support-block .service-text").hide();
					$(".support-block .service-h2").hide();
					$(".support-block .service-h2-over").show();
					$(".support-block .service-text-over").show();
					$(".support-block .service-block-arrow").css('background-image','url(/uploads/images/site/arrow-purple-small.png)').show(400);
					$(this).css('cursor', 'pointer')
					$(this).click(function() {
        				window.location = $('a', this).attr('href');
        			});
				}, function(){
					$(this).animate({backgroundColor: "#ccc"}, 400);
					$(".support-block .service-h2-over").hide();
					$(".support-block .service-h2").show();
					$(".support-block .service-text-over").hide();
					$(".support-block .service-text").show();
					$(".support-block .service-block-arrow").css('background-image','url(/uploads/images/site/arrow-white-small.png)').show(400);
				});

			}
		);