$(document).ready(function(){
	$("#serv_but").show();
	$(".v_less").hide();
	//$("#services").height(147);
	//$("#services").css("overflow","hidden");
	var h = $("#services").height();	
		
	$(".v_more").css("cursor", "pointer").click(function(){
		$(this).hide();
		$(".v_less").show();
		$("#services").animate({"height": h*2}, "normal", "swing");
	});	
	$(".v_less").css("cursor", "pointer").click(function(){
		$(this).hide();
		$(".v_more").show();		
		$("#services").animate({"height": h}, "normal", "swing");
	});	
});