<!DOCTYPE html><?php include 'config.php'; ?>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Laughing Plants</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<link rel="stylesheet" href="/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/bootstrap.css">
<link rel="stylesheet" href="/css/innerpage.css">
<link rel='stylesheet' href='/css/prettyPhoto.css' type='text/css' media='all' />
<link rel='stylesheet' href='/css/owl.carousel.css' type='text/css' media='all'/>
<link rel='stylesheet' href='/css/owl.theme.css' type='text/css' media='all'/>
<link rel="stylesheet" href='/css/magnific-popup.css' type='text/css' media='all' />
<link rel='stylesheet' href='/css/animate.css' type='text/css' media='all' />
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
<link rel="shortcut icon" href="/images/leaf.png">
<!-- Tweaks for older IEs--><!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCOWgu4DawlgKC6p8Ada-fmmYgFqYaqACI"></script>
<?php include_once("shared/analyticstracking.php") ?>
</head>
<?php
$community=$contact_us=$corporate=$plant_finder='';
if(basename($_SERVER['PHP_SELF'])==='community.php' || basename($_SERVER['PHP_SELF'])==='community-detail.php')
{
$community='active';
}
elseif (basename($_SERVER['PHP_SELF'])==='contact.php')
{
$contact_us='active';
}
elseif (basename($_SERVER['PHP_SELF'])==='corporate.php')
{
$corporate='active';
}
elseif (basename($_SERVER['PHP_SELF'])==='plant-finder.php')
{
$plant_finder='active';
}
?>
<body onload="initialize()">
<header>
<div class="top_div"></div>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><img class="img-responsive" src="/images/logo.png" alt=""></a>
</div>
<div id="navbar" class="navbar-collapse collapse" aria-expanded="false">
<ul class="nav navbar-nav navbar-right">
<li><a href="//shop.laughingplants.com" class="active">Buy Online</a></li>
<!-- <li><a class="--><?php //echo $plant_finder; ?><!--" href="plant-finder.php">Plant Finder</a></li>-->
<!-- <li><a href="about-us.php">About Us</a></li>-->
<!-- <li><a class="--><?php //echo $corporate; ?><!--" href="corporate.php">Corporate</a></li>-->
<!-- <li><a class="--><?php //echo $community; ?><!--" href="community.php">Community</a></li>-->
<li><a href="/collections/air-purifier">Air Purifier</a></li>
<li><a href="/collections/desert-delight">Desert Delight</a></li>
<li><a href="/collections/carefree">Carefree</a></li>
<li><a href="/collections/stress-buster">Stress Buster</a></li>
<li><a href="/contact-us" class="<?php echo $contact_us; ?>">Contact Us</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</nav>
</div>
</header> |