$(document).ready(function() {
  $('.lawnscape').addClass('active');
  $('.servicesmenuitem').click(function() {
    $('.servicesmenuitem').removeClass('active');
    clearServiceClasses();
    $(this).addClass('active');
    if ($(this).hasClass('lawnscape')) {
      $('#servicetitle').html('LAWN SCAPES');
      $('#servicetext').html('We are lawncare professionals! Mowing, edging, rototilling, fertilizing, seeding/sodding, mulching, irrigation systems, tree, shrub and flower<br/>planting - we do it all at economical prices. We know every dollar counts so we will give you a very reasonable price!!');
      $('#servicearea').addClass('lawnscapes');
      $('#viewmoretext').html('<a href="lawnscapes.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('landscape')) {
      $('#servicetitle').html('LAND SCAPES');
      $('#servicetext').html('Just bought a house and ready to put your touches on it? Need to get it ready for an open house? Or just ready for a landscaping change?<br/><br/>Our designer has been in the business for many years and will come meet you to determine your needs and desires.');
      $('#servicearea').addClass('landscapes');
      $('#viewmoretext').html('<a href="landscapes.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('stonescape')) {
      $('#servicetitle').html('STONE SCAPES');
      $('#servicetext').html('Use stone to do many things at your home - build a patio, increase curb appeal and value, construct a retaining wall, border planting beds and trees, add a fire pit to your patio... and the list goes on.<br/><br/>We are specialists in using stone to create exciting hard scapes.');
      $('#servicearea').addClass('stonescapes');
      $('#viewmoretext').html('<a href="stonescapes.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('hardscape')) {
      $('#servicetitle').html('HARD SCAPES');
      $('#servicetext').html('Want a raised planter for your vegetable garden? How about a walkway on the side of the house? We do that and more - patios, retaining walls, planting borders, and firepits.<br/><br/>Protect your investment - we powerwash, stain and seal decks and fences.');
      $('#servicearea').addClass('hardscapes');
      $('#viewmoretext').html('<a href="hardscapes.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('pondscape')) {
      $('#servicetitle').html('POND SCAPES');
      $('#servicetext').html('We can design, install, and maintain a pond for you. Any size, shape, or configuration - guaranteed to add beauty to your landscape! Add a waterfall and listen to the calming effects of the falling water. Adding plants and fish make it more natural!');
      $('#servicearea').addClass('pondscapes');
      $('#viewmoretext').html('<a href="pondscapes.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('homescape')) {
      $('#servicetitle').html('HOME SCAPES');
      $('#servicetext').html('Just bought a home and ready to make it feel like your home? Trying to sell your home and want to get those offers?<br/><br/>Our expert interior designer can help you with color selections, accessories, furniture, space planning, staging, and much more!');
      $('#servicearea').addClass('homescapes');
      $('#viewmoretext').html('<a href="homescapes.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('aeration')) {
      $('#servicetitle').html('LAWN AERATION');
      $('#servicetext').html('Core aeration can help make your lawn healthier and reduce its maintenance requirements through these means:<ul class="servicelist"><li>Improved air exchange</li><li>Enhanced soil water uptake</li><li>Improved fertilizer uptake/use</li><li>Reduced water runoff/puddling</li><li>Stronger turfgrass roots</li></ul>and more!');
      $('#servicearea').addClass('lawnaeration');
      $('#viewmoretext').html('<a href="lawnaeration.php">view more &gt;&gt;</a>');
    }
    else if ($(this).hasClass('washing')) {
      $('#servicetitle').html('POWER WASHING');
      $('#servicetext').html('Breathe life into your deck, fence or walkways with our power washing services.<br/><br/>You\'ll be amazed with the results! Decks, outdoor patios, driveways, sidewalks, fences and more are transformed, appearing brand new!');
      $('#servicearea').addClass('powerwashing');
      $('#viewmoretext').html('<a href="powerwashing.php">view more &gt;&gt;</a>');
    }
    else {
      $('#servicetitle').html('');
    }
    return false;
    });
});
function clearServiceClasses()
{
    $('#servicearea').removeClass('lawnscapes');
    $('#servicearea').removeClass('landscapes');
    $('#servicearea').removeClass('stonescapes');
    $('#servicearea').removeClass('hardscapes');
    $('#servicearea').removeClass('pondscapes');
    $('#servicearea').removeClass('homescapes');
    $('#servicearea').removeClass('lawnaeration');
    $('#servicearea').removeClass('powerwashing');
}

