jQuery(document).ready(function() {

$(".service").click(function(){
	$(".desc").hide();
	$(this).parent().find(".desc").show();
});

});
