$(document).ready(function(){
	//Apply hover effect on clickable list items
	$("#services .item").hover(function() {
		$(this).addClass("hover"); //over
		}, function() {
		$(this).removeClass("hover"); //out
	});
	$("#services .item").click(function() {
		if($(this).find("h3 a")) {
			var the_url = $(this).find("h3 a").attr("href");
			if (the_url != null){
				location.href = the_url;
			}
		}
	});
});