$(document).ready(function() {
 //JS Code Common for whole project goes here
$('.dashboard-bottom .wrapper div:last').parent().addClass('last');
$(".widget ul li:last-child").addClass("last");
$("ul.children .box3").addClass("replys box4");
$("ul.children .box3").removeClass("box3");

$('.personal-bottom .price-learn-more').click(function(e){
	$(this).hide();
	$('.personal-bottom .learn-more-expanded').toggle(500, function(){});
	return false;
});

$('.business-bottom .price-learn-more').click(function(e){
	$(this).hide();
	$('.business-bottom .learn-more-expanded').toggle(500, function(){});
	return false;
});

$('.enterprise-bottom .price-learn-more').click(function(e){
	$(this).hide();
	$('.enterprise-bottom .learn-more-expanded').toggle(500, function(){});
	return false;
});


$('.learn-more').click(function(e){
	$('.learn-more-expanded').toggle(500, function(){});
	return false;
});

});

