﻿$(".no-script").hide();
$(".services").show();

$(document).ready(function() {
	var s = "fast";
	function resetHeight() { $(this).height('auto'); }
	$(".service").hover(function() {
		$(this)
			.find('h2').stop().slideUp(s, resetHeight).end()
			.find('.contents').stop().slideDown(s, resetHeight);
	}, function() {
		$(this)
			.find('h2').stop().slideDown(s, resetHeight).end()
			.find('.contents').stop().slideUp(s, resetHeight);
	});
});

