
(function(){

	$(document).ready(function(){

		// clickable box handler.
		$('#pre > div.services > div.item')
			.css({cursor: 'pointer'})
			.click(function(){
				location.href = $(this).find('h3 > a').attr('href');
				return false;
			});

	});

})(jQuery);
