<?php
include('../../shopping_cart.class.php');
session_start();
date_default_timezone_set('Europe/London');
$Cart = new Shopping_Cart('shopping_cart');
require_once('../../Connections/mysqli_connect.php');
require_once('../../inc/restfuncs.php');
$_SESSION['callingpage']  = $_SERVER["REQUEST_URI"];
$_SESSION['menucallpage'] = $_SERVER["REQUEST_URI"];
$_SESSION['orderplaced']  = 'N';

if (isset($_GET['itemname'])) { $getitemname = $_GET['itemname']; } else { $getitemname = NULL; }
if (isset($_GET['price']))    { $getprice    = $_GET['price'];    } else { $getprice    = NULL; }
if (isset($_GET['itemid']))   { $getitemid   = $_GET['itemid'];   } else { $getitemid   = NULL; }
if (isset($_GET['menuid']))   { $getmenuid   = $_GET['menuid'];   } else { $getmenuid   = NULL; }

//<!-- ******************************************************************************************************* -->
$restaurantid = 46918;
                      $_SESSION['restaurantid']=46918;
                    $category="BeveragesCategory";$relatedRestaurants = array (
  0 => 
  array (
    'name' => 'Sunrise Tandoori',
    'url' => 'https://www.eateasy.co.uk/Hampshire-takeaways/Gosport-restaurants/Sunrise-Tandoori-PO12-1JB.php',
  ),
  1 => 
  array (
    'name' => 'Bay Leaves',
    'url' => 'https://www.eateasy.co.uk/Hampshire-takeaways/Gosport-restaurants/Bay-Leaves-PO12-1LR.php',
  ),
  2 => 
  array (
    'name' => 'Akash Balti Tandoori',
    'url' => 'https://www.eateasy.co.uk/Hampshire-takeaways/Gosport-restaurants/Akash-Balti-Tandoori-PO12-4AA.php',
  ),
  3 => 
  array (
    'name' => 'Millennium Balti',
    'url' => 'https://www.eateasy.co.uk/Hampshire-takeaways/Gosport-restaurants/Millennium-Balti-PO12-4AA.php',
  ),
);$selArr = array(array(0));
        $_SESSION["selArr"]=$selArr;
        
// <!-- ******************************************************************************************************* -->
// End of restaurant Specific

if (isset($_GET['category'])) {
    $category = $_GET['category'];
}
if (!isset($_SESSION['menurestaurantid']) || $_SESSION['menurestaurantid'] != $restaurantid) {
    $choicenum = 0;
    $_SESSION['callingpage'] = $_SERVER["REQUEST_URI"];
    $Cart->emptycart();
    $Cart->save();
    $savedcategory = "";
    $_SESSION['menurestaurantid'] = $restaurantid;
    $query = 'SELECT * FROM restaurant WHERE restaurantid=' . $restaurantid;
    $results = mysqli_query($dbci, $query) or die(mysqli_error());
    $foundlist = mysqli_num_rows($results);
    if ($foundlist) {
        $row = mysqli_fetch_array($results, MYSQLI_ASSOC);
        $_SESSION['boxnum']               = $row["boxnum"];
        $_SESSION['restcity']             = $row["restcity"];
        $_SESSION['resttype']             = $row['rest_type'];
        $resttype                         = rtrim($_SESSION['resttype']);
        $_SESSION['resttype2']            = $row['rest_type2'];
        $resttype2                        = rtrim($_SESSION['resttype2']);
        $_SESSION['resttype3']            = $row['rest_type3'];
        $resttype3                        = rtrim($_SESSION['resttype3']);
        $_SESSION['resttype4']            = $row['rest_type4'];
        $resttype4                        = rtrim($_SESSION['resttype4']);
        $_SESSION['restcounty']           = $row["restcounty"];
        $_SESSION['restname']             = $row["restname"];
        $restname                         = $_SESSION['restname'];
        $_SESSION['keywords']             = $row["keywords"];
        $_SESSION['restactive']           = $row['restactive'];
        $_SESSION['restaddress1']         = $row['restaddress1'];
        $_SESSION['restaddress2']         = $row['restaddress2'];
        $_SESSION['restcity']             = $row['restcity'];
        $_SESSION['restcounty']           = $row['restcounty'];
        $_SESSION['restpostcode']         = $row['restpostcode'];
        $restpostcode                     = $_SESSION['restpostcode'];
        $restpart1                        = $row['part1'];
        $_SESSION['restpart1']            = $row['part1'];
        $restpart1                        = $_SESSION['restpart1'];
        $_SESSION['restemail']            = $row['restemail'];
        $_SESSION['rest_image']           = rtrim($row['rest_image']);
        $_SESSION['telephone']            = $row['telephone'];
        $_SESSION['urlrestname']          = $row['urlrestname'];
        $_SESSION['deliverycharge']       = $row['delivery_charge'];
        $_SESSION['deliverytimelag']      = $row['delivery_timelag'];
        $_SESSION['deliverythreshold']    = $row['free_delivery_threshold'];
        $_SESSION['cashondelivery']       = $row['cashondelivery'];
        $_SESSION['minimumorder']         = $row['minimum_order'];
        $_SESSION['urlpath']              = $row['urlpath'];
        $_SESSION['sms']                  = $row['sms'];
        $_SESSION['fax']                  = $row['fax'];
        $_SESSION['vpnip']                = $row['vpnip'];
        $_SESSION['restauranturl']        = rtrim($_SESSION['urlpath']) . rtrim($_SESSION['urlrestname']);
        $_SESSION['OrderTotal']           = 0;
        $_SESSION['commission']           = $row['commission'];
        $_SESSION['special1itemname']     = $row['special1itemname'];
        $_SESSION['special2itemname']     = $row['special2itemname'];
        $_SESSION['special3itemname']     = $row['special3itemname'];
        $_SESSION['special1description']  = $row['special1description'];
        $_SESSION['special2description']  = $row['special2description'];
        $_SESSION['special3description']  = $row['special3description'];
        $_SESSION['special1subtype']      = $row['special1subtype'];
        $_SESSION['special2subtype']      = $row['special2subtype'];
        $_SESSION['special3subtype']      = $row['special3subtype'];
        $_SESSION['special1price']        = $row['special1price'];
        $_SESSION['special2price']        = $row['special2price'];
        $_SESSION['special3price']        = $row['special3price'];
        $_SESSION['restosx']              = rtrim($row["osx"]);
        $_SESSION['restosy']              = rtrim($row["osy"]);
        $_SESSION['delivery_radius']      = rtrim($row["delivery_radius"]);
        $_SESSION['delivery_charge_late'] = rtrim($row["delivery_charge_late"]);
        $_SESSION['delivery_time_late']   = rtrim($row["delivery_time_late"]);
        $_SESSION['exclusioncode']        = rtrim($row["exclusioncode"]);
        $_SESSION['deliverypermile']      = rtrim($row["deliverypermile"]);
        $_SESSION['freedeliverydistance'] = rtrim($row["freedeliverydistance"]);
        $_SESSION['orderdeliverytype']    = rtrim($row["orderdeliverytype"]);
        $_SESSION['orderemail']           = rtrim($row["orderemail"]);
        $_SESSION['livemenu']             = rtrim($row["livemenu"]);
        $_SESSION['acceptcards']          = rtrim($row["acceptcards"]);
        $_SESSION['acceptpaypal']         = rtrim($row["acceptpaypal"]);
        $_SESSION['halal']                = rtrim($row["halal"]);
        $_SESSION['spicy']                = rtrim($row["spicy"]);
        $_SESSION['vegan']                = rtrim($row["vegan"]);
        $_SESSION['vegetarian']           = rtrim($row["vegetarian"]);
        if ($row['special1itemname'] != '' || $row['special2itemname'] != '' || $row['special3itemname'] != '') {
            $_SESSION['specials'] = TRUE;
        } else {
            $_SESSION['specials'] = FALSE;
        }
        $totaldeliverycharge  = 0;
        $distancecharge       = 0;
        $deliveryamountcharge = 0;
        $latecharge           = 0;
    } else {
        $_SESSION['restcity']   = "";
        $_SESSION['restcounty'] = "";
        $_SESSION['restname']   = "";
        $_SESSION['keywords']   = "";
        $_SESSION['restactive'] = "N";
    }
} else {
    $_SESSION['restaurantid'] = $restaurantid;
    if (isset($_GET['choicenum']) && $_GET['choicenum'] >= 0) {
        $choicenum     = $_GET['choicenum'];
        $savedcategory = $_GET['category'];
        $category      = 'ItemSelects';
    } else {
        $choicenum = 0;
        if (isset($_GET['act'])) {
            switch ($_GET['act']) {
                case "add":
                    $choices = " ( ";
                    for ($i = 0; $i < 100; $i++) {
                        if (isset($_GET[$i]) && $_GET[$i] != "") {
                            if ($choices == " ( ") {
                                $choices = rtrim($choices . urldecode($_GET[$i]));
                            } else {
                                $choices = rtrim($choices . "," . urldecode($_GET[$i]));
                            }
                        }
                    }
                    if ($choices == " ( ") { $choices = ""; } else { $choices .= " )"; }
                    $quantity = $Cart->getItemQuantity($getmenuid, $choices) + 1;
                    if ($quantity == 1) {
                        $Cart->setNewItem($getmenuid, $choices, $quantity, $getitemid, urldecode($getitemname), $getprice);
                    } else {
                        $Cart->setItemQuantity($getmenuid, $choices, $quantity);
                    }
                    $Cart->save();
                    break;
                case "rem":
                    $Cart->setItemQuantity($getmenuid, $_GET['choices'], 0);
                    $Cart->save();
                    break;
            }
        }
    }
    if (isset($_GET['quantity']) && is_array($_GET['quantity']) && count($_GET['quantity'])) {
        foreach ($_GET['quantity'] as $orderid => $quantity) {
            $Cart->setOrderQuantity($orderid, $quantity);
            $Cart->save();
        }
    }
}

$openarr                  = checkopen($_SESSION['restaurantid'], $dbci);
$_SESSION['discount']     = getDiscount();
$_SESSION['OKZone']       = checkZone();
$_SESSION['openclose']    = $openarr[0];
$_SESSION['opentimes']    = $openarr[1];
$_SESSION['islate']       = $openarr[2];
$restcity    = rtrim($_SESSION['restcity']);
$restcounty  = rtrim($_SESSION['restcounty']);
$restname    = rtrim($_SESSION['restname']);
$resttype    = rtrim($_SESSION['resttype']);
$KEYWORD     = $_SESSION['keywords'];
$restactive  = $_SESSION['restactive'];

$deliveryinfo = "Delivery unavailable";
if ($_SESSION['restactive'] == 'Y') {
    if ($_SESSION['deliverytimelag'] == "") { $_SESSION['deliverytimelag'] = "60"; }
    $deliveryinfo = 'Delivery up to ' . $_SESSION['delivery_radius'] . ' miles in ' . $_SESSION['deliverytimelag'] . ' mins';
} else {
    $deliveryinfo = "Delivery unavailable";
}

// FIX 1:  belongs here in the PHP, inside the distance
// check block — exactly as it is in the original template. Moving it to the
// HTML (as in the previous version) was incorrect; it must execute as PHP
// before the page renders so $distancecharge is set correctly.
if (isset($_SESSION['restclientdistance'])) {
    $distancecharge = 0;
    
    $_SESSION['distancecharge'] = $distancecharge;
} else {
    $_SESSION['distancecharge'] = 0;
}

$keywordlist = $restname . "," . $restcity . "," . $_SESSION['resttype'];
if ($_SESSION['resttype2'] != "") { $keywordlist .= "," . $_SESSION['resttype2']; }
if ($_SESSION['resttype3'] != "") { $keywordlist .= "," . $_SESSION['resttype3']; }
if ($_SESSION['resttype4'] != "") { $keywordlist .= "," . $_SESSION['resttype4']; }
$keywordlist .= ",food,delivery,takeaway,menu";

$descriptionlist = "Explore the full menu from $restname in $restcity. Order $resttype takeaway online for fast delivery or collection. Wide selection of delicious dishes.";

function CurrencyCheck($amount) {
    $amount = ltrim(rtrim($amount));
    $pos = strpos($amount, '.');
    $len = strlen($amount);
    if ($pos === false) {
        $amount .= '.00';
    } elseif ($pos + 2 == $len) {
        $amount .= '0';
    } elseif ($pos + 1 == $len) {
        $amount .= '00';
    }
    return ($amount);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- SEO -->
    <title><?php echo htmlspecialchars($restname); ?>: <?php echo htmlspecialchars($resttype); ?> Takeaway Menu in <?php echo htmlspecialchars($restcity); ?> | EatEasy</title>
    <meta name="description" content="<?php echo htmlspecialchars($descriptionlist); ?>">
    <meta name="keywords"    content="<?php echo htmlspecialchars($keywordlist); ?>">
    <meta name="robots"      content="index, follow, max-snippet:-1, max-image-preview:large">
    <link rel="canonical"    href="<?php echo 'https://www.eateasy.co.uk/' . htmlspecialchars($_SESSION['urlpath'] . str_replace('.php', '-menu.php', rtrim($_SESSION['urlrestname']))); ?>">

    <!-- Open Graph -->
    <meta property="og:type"        content="restaurant">
    <meta property="og:title"       content="<?php echo htmlspecialchars($restname); ?>: <?php echo htmlspecialchars($resttype); ?> Takeaway Menu in <?php echo htmlspecialchars($restcity); ?>">
    <meta property="og:description" content="<?php echo htmlspecialchars($descriptionlist); ?>">
    <meta property="og:image"       content="https://www.eateasy.co.uk/images/<?php echo htmlspecialchars($_SESSION['rest_image']); ?>">
    <meta property="og:url"         content="<?php echo 'https://www.eateasy.co.uk/' . htmlspecialchars($_SESSION['urlpath'] . str_replace('.php', '-menu.php', rtrim($_SESSION['urlrestname']))); ?>">

    <!-- Twitter Card -->
    <meta name="twitter:card"        content="summary_large_image">
    <meta name="twitter:title"       content="<?php echo htmlspecialchars($restname); ?> Menu | EatEasy">
    <meta name="twitter:description" content="<?php echo htmlspecialchars($descriptionlist); ?>">
    <meta name="twitter:image"       content="https://www.eateasy.co.uk/images/<?php echo htmlspecialchars($_SESSION['rest_image']); ?>">

    <!-- Schema.org JSON-LD -->
    <script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": "Restaurant",
        "name": "<?php echo htmlspecialchars($restname, ENT_QUOTES); ?>",
        "servesCuisine": "<?php echo htmlspecialchars($resttype, ENT_QUOTES); ?>",
        "telephone": "<?php echo htmlspecialchars($_SESSION['telephone'], ENT_QUOTES); ?>",
        "url": "<?php echo 'https://www.eateasy.co.uk/' . htmlspecialchars($_SESSION['urlpath'] . $_SESSION['urlrestname']); ?>",
        "menu": "<?php echo 'https://www.eateasy.co.uk/' . htmlspecialchars($_SESSION['urlpath'] . str_replace('.php', '-menu.php', rtrim($_SESSION['urlrestname']))); ?>",
        "image": "https://www.eateasy.co.uk/images/<?php echo htmlspecialchars($_SESSION['rest_image'], ENT_QUOTES); ?>",
        "address": {
            "@type": "PostalAddress",
            "streetAddress": "<?php echo htmlspecialchars(rtrim($_SESSION['restaddress1'] . ' ' . $_SESSION['restaddress2']), ENT_QUOTES); ?>",
            "addressLocality": "<?php echo htmlspecialchars($restcity, ENT_QUOTES); ?>",
            "addressRegion": "<?php echo htmlspecialchars($restcounty, ENT_QUOTES); ?>",
            "postalCode": "<?php echo htmlspecialchars($_SESSION['restpostcode'], ENT_QUOTES); ?>",
            "addressCountry": "GB"
        }
    }
    </script>

    <!-- Google Analytics -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-EEWCVF6M26"></script>
    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag() { dataLayer.push(arguments); }
        gtag('js', new Date());
        gtag('config', 'G-EEWCVF6M26');
    </script>

    <!-- AdSense -->
    <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4829507070201485" crossorigin="anonymous"></script>

    <!-- Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">

    <!-- Single consolidated CSS — replaces both index.css and menunew.css -->
    <!-- Bootstrap CSS must be loaded for tab-pane show/hide to work -->
    <link rel="stylesheet" href="https://www.eateasy.co.uk/css/bootstrap.css">
    <link rel="stylesheet" href="https://www.eateasy.co.uk/css/menu.css">

    <!-- jQuery MUST load before Bootstrap JS and cartnew.js -->
    <script src="https://www.eateasy.co.uk/js/jquery.min.js"></script>
    <!-- Bootstrap JS provides the .tab('show') plugin used by cartnew.js -->
    <script src="https://www.eateasy.co.uk/js/bootstrap.js"></script>
    <!-- Cart and site JS -->
    <script src="https://www.eateasy.co.uk/js/cartnew.js"></script>
    <script src="https://www.eateasy.co.uk/scripts/functions.js"></script>

    <script>
    function caps(el) { el.value = el.value.toUpperCase(); }
    </script>

    <!-- Cookie consent -->
    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css">
    <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
    <script>
    window.addEventListener("load", function() {
        window.cookieconsent.initialise({
            "palette": { "popup": {"background":"#0f2744","text":"#cce4f6"}, "button": {"background":"#3a6bc4","text":"#ffffff"} },
            "showLink": false, "type": "opt-out"
        });
    });
    </script>
</head>
<body class="menu-page">

<!-- ═══ HEADER ═══ -->
<header class="site-header">
    <div class="header-inner">
        <a class="logo-link" href="https://www.eateasy.co.uk/" aria-label="EatEasy Home">
            <img src="https://www.eateasy.co.uk/images/EatEasyLogoHeaderSmall.png"
                 alt="EatEasy" class="logo-img" width="120" height="38">
        </a>
        <button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false"
                onclick="var e=document.getElementById('main-nav');e.classList.toggle('open');this.setAttribute('aria-expanded',e.classList.contains('open').toString())">
            <span></span><span></span><span></span>
        </button>
        <nav id="main-nav" class="main-nav" aria-label="Main navigation">
            <ul>
                <li><a href="https://www.eateasy.co.uk/">Home</a></li>
                <li><a href="https://www.eateasy.co.uk/<?php echo htmlspecialchars($_SESSION['restauranturl']); ?>">Back to Restaurant</a></li>
                <?php if (isset($_SESSION['loginstatus']) && $_SESSION['loginstatus'] === 'IN'): ?>
                    <li><a href="https://www.eateasy.co.uk/member-profile.php">Profile</a></li>
                    <li><a href="https://www.eateasy.co.uk/logout.php">Logout</a></li>
                <?php else: ?>
                    <li><a href="https://www.eateasy.co.uk/login.php">Login</a></li>
                    <li><a href="https://www.eateasy.co.uk/register.php">Register</a></li>
                <?php endif; ?>
                <li><a href="https://www.eateasy.co.uk/about-us.php">About</a></li>
                <li><a href="https://www.eateasy.co.uk/contact-us.php">Contact Us</a></li>
            </ul>
        </nav>
        <form class="header-search" action="https://www.eateasy.co.uk/search.php" method="get" role="search">
            <input type="text" name="postcode" placeholder="Enter postcode…" maxlength="8" onkeyup="caps(this)" aria-label="Search by postcode">
            <input type="hidden" name="foodtype" id="foodtype2" value="All">
            <button type="submit">Search</button>
        </form>
    </div>
</header>

<!-- ═══ MENU HERO BAND ═══ -->
<div class="menu-hero">
    <div class="menu-hero-inner">
        <img src="https://www.eateasy.co.uk/images/<?php echo htmlspecialchars($_SESSION['rest_image']); ?>"
             width="80" height="80" alt="<?php echo htmlspecialchars($restname); ?> Restaurant Image"
             class="menu-logo">
        <div class="menu-hero-info">
            <nav aria-label="Breadcrumb" class="breadcrumb-nav">
                <ol>
                    <li><a href="https://www.eateasy.co.uk">Home</a></li>
                    <li aria-hidden="true">›</li>
                    <li><a href="<?php echo htmlspecialchars('https://www.eateasy.co.uk/' . str_replace(' ','-',$restcounty) . '-takeaways/' . str_replace(' ','-',$restcity) . '-restaurants/' . str_replace(' ','-',$restcity) . '-takeaway-food-' . str_replace(' ','-',$restcounty) . '.php'); ?>"><?php echo htmlspecialchars($restcity); ?> Takeaways</a></li>
                    <li aria-hidden="true">›</li>
                    <li><a href="https://www.eateasy.co.uk/<?php echo htmlspecialchars($_SESSION['restauranturl']); ?>"><?php echo htmlspecialchars($restname); ?></a></li>
                    <li aria-hidden="true">›</li>
                    <li aria-current="page">Menu</li>
                </ol>
            </nav>
            <h1><?php echo htmlspecialchars($restname); ?> Takeaway Menu</h1>
            <p class="menu-meta"><?php echo htmlspecialchars($descriptionlist); ?></p>
            <p class="menu-meta">
                Distance:
                <?php if (isset($_SESSION['restclientdistance'])) { echo htmlspecialchars(substr($_SESSION['restclientdistance'], 0, 5)) . ' miles away'; } else { echo 'Sign in to see distance'; } ?>
                &nbsp;|&nbsp; Today's hours: <strong><?php echo htmlspecialchars($_SESSION['opentimes']); ?></strong>
                &nbsp;|&nbsp; Min. order: <strong>&pound;<?php echo htmlspecialchars($_SESSION['minimumorder']); ?></strong>
                &nbsp;|&nbsp; Delivery: up to <strong><?php echo htmlspecialchars($_SESSION['delivery_radius']); ?> miles</strong>
                <?php if ($_SESSION['deliverycharge'] > 0): ?>&nbsp;|&nbsp; Charge: <strong>&pound;<?php echo htmlspecialchars($_SESSION['deliverycharge']); ?></strong><?php endif; ?>
                <?php if ($_SESSION['deliverythreshold'] > 0): ?>&nbsp;|&nbsp; Free delivery over <strong>&pound;<?php echo htmlspecialchars($_SESSION['deliverythreshold']); ?></strong><?php endif; ?>
            </p>
            <?php
            $diet = '';
            if ($_SESSION['halal']      == 'Y') $diet .= '<img src="https://www.eateasy.co.uk/images/halal.jpg" width="36" height="36" alt="Halal Food at ' . htmlspecialchars($restname) . '" /> ';
            if ($_SESSION['vegan']      == 'Y') $diet .= '<img src="https://www.eateasy.co.uk/images/vegan.jpg" width="36" height="36" alt="Vegan Food at ' . htmlspecialchars($restname) . '" /> ';
            if ($_SESSION['vegetarian'] == 'Y') $diet .= '<img src="https://www.eateasy.co.uk/images/vegetarian.jpg" width="36" height="36" alt="Vegetarian Food at ' . htmlspecialchars($restname) . '" /> ';
            if ($_SESSION['spicy']      == 'Y') $diet .= '<img src="https://www.eateasy.co.uk/images/spicy.jpg" width="36" height="36" alt="Spicy Food at ' . htmlspecialchars($restname) . '" />';
            if ($diet) echo '<div class="menu-diet">' . $diet . '</div>';
            ?>
            <div class="share-buttons">
                <a href="https://twitter.com/intent/tweet?text=<?php echo urlencode('Check out the ' . $restname . ' menu on EatEasy!'); ?>&url=<?php echo urlencode('https://www.eateasy.co.uk/' . $_SESSION['urlpath'] . str_replace('.php', '-menu.php', rtrim($_SESSION['urlrestname']))); ?>"
                   class="share-btn share-x" target="_blank" rel="noopener noreferrer" aria-label="Share on X">
                    <svg width="13" height="13" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.744l7.73-8.835L1.254 2.25H8.08l4.253 5.622L18.244 2.25zm-1.161 17.52h1.833L7.084 4.126H5.117L17.083 19.77z"/></svg>
                    Share on Twitter
                </a>
                <a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo urlencode('https://www.eateasy.co.uk/' . $_SESSION['urlpath'] . str_replace('.php', '-menu.php', rtrim($_SESSION['urlrestname']))); ?>"
                   class="share-btn share-fb" target="_blank" rel="noopener noreferrer" aria-label="Share on Facebook">
                    <svg width="13" height="13" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>
                    Share on Facebook
                </a>
            </div>
        </div>
    </div>
</div>

<!-- ═══ THREE-COLUMN MENU LAYOUT ═══ -->
<div id="mainTab" class="menu-layout">

    <!-- Bootstrap nav-tabs — cartnew.js uses $('.nav-tabs a[href="#...""]').tab('show') -->
    <?php
    // Determine which tab to show on load.
    $activeTab = 'menucontents';
    if (isset($_GET['category']) && $_GET['category'] === 'orderform') {
        $activeTab = 'orderform';
    }
    ?>
    <ul class="nav nav-tabs menu-tabs">
        <li<?php echo $activeTab === 'categorybar'  ? ' class="active"' : ''; ?>><a href="#categorybar"  data-toggle="tab">Category</a></li>
        <li<?php echo $activeTab === 'menucontents' ? ' class="active"' : ''; ?>><a href="#menucontents" data-toggle="tab">Menu</a></li>
        <li<?php echo $activeTab === 'orderform'    ? ' class="active"' : ''; ?>><a href="#orderform"    data-toggle="tab">Order</a></li>
    </ul>
    <?php if ($activeTab === 'orderform'): ?>
    <script>
    // Force Bootstrap to show the Order tab after it initialises.
    // PHP sets the active class but Bootstrap's JS can reset it on ready.
    $(document).ready(function() {
        $('.nav-tabs a[href="#orderform"]').tab('show');
    });
    </script>
    <?php endif; ?>

    <div class="tab-content">

        <!-- LEFT: Category panel -->
        <div id="categorybar" class="tab-pane<?php echo $activeTab === 'categorybar' ? ' active' : ''; ?>">
            <?php
            $cat = 'DailySpecials';
            if ($_SESSION['specials']) {
                echo '<a href="?category=DailySpecialsCategory" class="categorytxt" onclick="this.blur(); return selcat(\'DailySpecialsCategory\');">Daily Specials</a>';
            }
            ?>
            <div class="categorytxt" onclick="this.blur(); return selcat('BeveragesCategory');"><a href="#menucontents" onclick="showmenu();">Beverages</a></div><div class="categorytxt" onclick="this.blur(); return selcat('SpecialoffersCategory');"><a href="#menucontents" onclick="showmenu();">Special offers</a></div><div class="categorytxt" onclick="this.blur(); return selcat('StartersCategory');"><a href="#menucontents" onclick="showmenu();">Starters</a></div><div class="categorytxt" onclick="this.blur(); return selcat('TandooridishesCategory');"><a href="#menucontents" onclick="showmenu();">Tandoori dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('HousespecialsCategory');"><a href="#menucontents" onclick="showmenu();">House specials</a></div><div class="categorytxt" onclick="this.blur(); return selcat('Chef`sspecialCategory');"><a href="#menucontents" onclick="showmenu();">Chef`s special</a></div><div class="categorytxt" onclick="this.blur(); return selcat('BaltidishesCategory');"><a href="#menucontents" onclick="showmenu();">Balti dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('Korai(wok)dishesCategory');"><a href="#menucontents" onclick="showmenu();">Korai (wok) dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('MasaladishesCategory');"><a href="#menucontents" onclick="showmenu();">Masala dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('PasandadishesCategory');"><a href="#menucontents" onclick="showmenu();">Pasanda dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('KormadishesCategory');"><a href="#menucontents" onclick="showmenu();">Korma dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('GarlicchillidishesCategory');"><a href="#menucontents" onclick="showmenu();">Garlicchilli dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('JalfrezidishesCategory');"><a href="#menucontents" onclick="showmenu();">Jalfrezi dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('NagadishesCategory');"><a href="#menucontents" onclick="showmenu();">Naga dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('ClassicsCategory');"><a href="#menucontents" onclick="showmenu();">Classics</a></div><div class="categorytxt" onclick="this.blur(); return selcat('BiryanidishesCategory');"><a href="#menucontents" onclick="showmenu();">Biryani dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('SidedishesCategory');"><a href="#menucontents" onclick="showmenu();">Side dishes</a></div><div class="categorytxt" onclick="this.blur(); return selcat('RiceCategory');"><a href="#menucontents" onclick="showmenu();">Rice</a></div><div class="categorytxt" onclick="this.blur(); return selcat('BreadCategory');"><a href="#menucontents" onclick="showmenu();">Bread</a></div><div class="categorytxt" onclick="this.blur(); return selcat('SundriesCategory');"><a href="#menucontents" onclick="showmenu();">Sundries</a></div><div class="categorytxt" onclick="this.blur(); return selcat('ChickenwingsCategory');"><a href="#menucontents" onclick="showmenu();">Chicken wings</a></div><div class="categorytxt" onclick="this.blur(); return selcat('DessertsCategory');"><a href="#menucontents" onclick="showmenu();">Desserts</a></div><div class="categorytxt" onclick="this.blur(); return selcat('SetmealsCategory');"><a href="#menucontents" onclick="showmenu();">Set meals</a></div>
        </div>

        <!-- CENTRE: Menu panel -->
        <div class="tab-pane<?php echo $activeTab === 'menucontents' ? ' active' : ''; ?>" id="menucontents">
        <div id="menus">
            <div id="categoryselected"></div>
            <div id="phpcategoryframe">
                <?php
                // FIX 2: Daily Specials rendered as three separate if-blocks with
                // explicit IDs (10001/10002/10003, 99999991/92/93) matching the original.
                // The previous version used a foreach loop which was incorrect.
                if ($_SESSION['specials']) {
                    $extrasid  = '-1';
                    $extrasArr = "";
                    if ($category != 'DailySpecialsCategory') {
                        echo '<div id="DailySpecialsCategory" style="display:none"> <a name="DailySpecials" id="DailySpecials">';
                    } else {
                        echo '<div id="DailySpecialsCategory"> <a name="DailySpecials" id="DailySpecials">';
                    }
                    echo '<h2>Daily Specials</h2>
                    </a>
                    <table id="menutable">
                      <tr class="headtxt">
                        <th width="25">Id</th>
                        <th width="260">Item</th>
                        <th width="120"></th>
                        <th width="45">Price</th>
                        <th width="17">Add</th>
                      </tr>';
                    if ($_SESSION['special1itemname'] != '') {
                        $itemid      = "10001";
                        $menuid      = "99999991";
                        $itemname    = str_replace(",", "", $_SESSION['special1itemname']);
                        $description = $_SESSION['special1description'];
                        $subtype     = $_SESSION['special1subtype'];
                        $price       = $_SESSION['special1price'];
                        echo '
                      <tr class="odd">
                        <td rowspan="1">' . $itemid . '</td>
                        <td rowspan="1"><h3>' . htmlspecialchars($itemname) . '</h3>
                          <div>' . htmlspecialchars($description) . '</div></td>
                        <td>' . htmlspecialchars($subtype) . '</td>
                        <td>£ ' . $price . '</td>
                        <td><a id="' . $menuid . '" href="?act=add&quantity=1&menuid=' . $menuid . '&itemid=' . $itemid . '&itemname=' . urlencode($itemname . ' ' . $subtype) . '&price=' . $price . '&choicenum=' . $extrasid . '&category=DailySpecialsCategory" onclick="this.blur(); return addItem(' . $menuid . ',' . $itemid . ',\'' . $itemname . ' ' . $subtype . '\',' . $price . ',' . $extrasid . ',' . $extrasArr . ',\'DailySpecialsCategory\');"><img src="https://www.eateasy.co.uk/images/button-add.gif" alt="Add ' . htmlspecialchars($itemname) . ' to cart" /></a></td>
                      </tr>';
                    }
                    if ($_SESSION['special2itemname'] != '') {
                        $itemid      = "10002";
                        $menuid      = "99999992";
                        $itemname    = str_replace(",", "", $_SESSION['special2itemname']);
                        $description = $_SESSION['special2description'];
                        $subtype     = $_SESSION['special2subtype'];
                        $price       = $_SESSION['special2price'];
                        echo '
                      <tr class="even">
                        <td rowspan="1">' . $itemid . '</td>
                        <td rowspan="1"><h3>' . htmlspecialchars($itemname) . '</h3>
                          <div>' . htmlspecialchars($description) . '</div></td>
                        <td>' . htmlspecialchars($subtype) . '</td>
                        <td>£ ' . $price . '</td>
                        <td><a id="' . $menuid . '" href="?act=add&quantity=1&menuid=' . $menuid . '&itemid=' . $itemid . '&itemname=' . urlencode($itemname . ' ' . $subtype) . '&price=' . $price . '&choicenum=' . $extrasid . '&category=DailySpecialsCategory" onclick="this.blur(); return addItem(' . $menuid . ',' . $itemid . ',\'' . $itemname . ' ' . $subtype . '\',' . $price . ',' . $extrasid . ',' . $extrasArr . ',\'DailySpecialsCategory\');"><img src="https://www.eateasy.co.uk/images/button-add.gif" alt="Add ' . htmlspecialchars($itemname) . ' to cart" /></a></td>
                      </tr>';
                    }
                    if ($_SESSION['special3itemname'] != '') {
                        $itemid      = "10003";
                        $menuid      = "99999993";
                        $itemname    = str_replace(",", "", $_SESSION['special3itemname']);
                        $description = $_SESSION['special3description'];
                        $subtype     = $_SESSION['special3subtype'];
                        $price       = $_SESSION['special3price'];
                        echo '
                      <tr class="odd">
                        <td rowspan="1">' . $itemid . '</td>
                        <td rowspan="1"><h3>' . htmlspecialchars($itemname) . '</h3>
                          <div>' . htmlspecialchars($description) . '</div></td>
                        <td>' . htmlspecialchars($subtype) . '</td>
                        <td>£ ' . $price . '</td>
                        <td><a id="' . $menuid . '" href="?act=add&quantity=1&menuid=' . $menuid . '&itemid=' . $itemid . '&itemname=' . urlencode($itemname . ' ' . $subtype) . '&price=' . $price . '&choicenum=' . $extrasid . '&category=DailySpecialsCategory" onclick="this.blur(); return addItem(' . $menuid . ',' . $itemid . ',\'' . $itemname . ' ' . $subtype . '\',' . $price . ',' . $extrasid . ',' . $extrasArr . ',\'DailySpecialsCategory\');"><img src="https://www.eateasy.co.uk/images/button-add.gif" alt="Add ' . htmlspecialchars($itemname) . ' to cart" /></a></td>
                      </tr>';
                    }
                    echo '</table></div>';
                }
                ?>
                
                <div id="BeveragesCategory" <?php if($category=='BeveragesCategory') {echo 'style=""';} ?>> <h2>Beverages</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Coca-Cola</h6>
                      <div></div></td>
                    <td>0.33L</td>
                    <td>£ 0.90</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780128,1,'Coca-Cola 0.33L',0.90,-1,'','BeveragesCategory'); showorder();" alt="Add Coca-Cola to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>2L</td>
                    <td>£ 2.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780129,1,'Coca-Cola 2L',2.95,-1,'','BeveragesCategory'); showorder();" alt="Add Coca-Cola to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Diet Coca-Cola</h6>
                      <div></div></td>
                    <td>0.33L</td>
                    <td>£ 0.90</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780130,2,'Diet Coca-Cola 0.33L',0.90,-1,'','BeveragesCategory'); showorder();" alt="Add Diet Coca-Cola to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>2L</td>
                    <td>£ 2.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780131,2,'Diet Coca-Cola 2L',2.95,-1,'','BeveragesCategory'); showorder();" alt="Add Diet Coca-Cola to cart"/></td></tr></table></div>
                    </div>
                <div id="SpecialoffersCategory" <?php if($category=='SpecialoffersCategory') {echo 'style=""';} ?>> <h2>Special offers</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Authentic Kurzi For 2</h6>
                      <div>Marinated with chef special spices with potato carrot cooked in a slow temperature served with starters mushroom bhaji vegetable bhaji special rice pilau rice 2 naan sweet kulfi</div></td>
                    <td>Chicken</td>
                    <td>£ 39.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780132,3,'Authentic Kurzi For 2 Chicken',39.95,-1,'','SpecialoffersCategory'); showorder();" alt="Add Authentic Kurzi For 2 to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 39.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780133,3,'Authentic Kurzi For 2 Lamb',39.95,-1,'','SpecialoffersCategory'); showorder();" alt="Add Authentic Kurzi For 2 to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Authentic Kurzi For 4</h6>
                      <div>Marinated with chef special spices with potato carrot cooked in a slow temperature served with starters mushroom bhaji vegetable bhaji special rice pilau rice 2 naan sweet kulfi</div></td>
                    <td>Chicken</td>
                    <td>£ 69.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780134,4,'Authentic Kurzi For 4 Chicken',69.95,-1,'','SpecialoffersCategory'); showorder();" alt="Add Authentic Kurzi For 4 to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 69.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780135,4,'Authentic Kurzi For 4 Lamb',69.95,-1,'','SpecialoffersCategory'); showorder();" alt="Add Authentic Kurzi For 4 to cart"/></td></tr></table></div>
                    </div>
                <div id="StartersCategory" <?php if($category=='StartersCategory') {echo 'style=""';} ?>> <h2>Starters</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Tikka Starters</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780136,5,'Tikka Starters Chicken',2.99,-1,'','StartersCategory'); showorder();" alt="Add Tikka Starters to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 3.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780137,5,'Tikka Starters Lamb',3.10,-1,'','StartersCategory'); showorder();" alt="Add Tikka Starters to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Duck Tikka Starter</h6>
                      <div>With peppers tomato and onions</div></td>
                    <td></td>
                    <td>£ 4.25</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780138,6,'Duck Tikka Starter ',4.25,-1,'','StartersCategory'); showorder();" alt="Add Duck Tikka Starter to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Tandoori Chicken</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780139,7,'Tandoori Chicken ',2.99,-1,'','StartersCategory'); showorder();" alt="Add Tandoori Chicken to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Somosa (2)</h6>
                      <div></div></td>
                    <td>Meat</td>
                    <td>£ 2.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780140,8,'Somosa (2) Meat',2.70,-1,'','StartersCategory'); showorder();" alt="Add Somosa (2) to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 2.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780141,8,'Somosa (2) Vegetable',2.70,-1,'','StartersCategory'); showorder();" alt="Add Somosa (2) to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Garlic Mushrooms</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780142,9,'Garlic Mushrooms ',2.95,-1,'','StartersCategory'); showorder();" alt="Add Garlic Mushrooms to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Onion Bhaji (4)</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780143,10,'Onion Bhaji (4) ',2.50,-1,'','StartersCategory'); showorder();" alt="Add Onion Bhaji (4) to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Kebab Starter (2)</h6>
                      <div></div></td>
                    <td>Seekh</td>
                    <td>£ 3.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780144,11,'Kebab Starter (2) Seekh',3.10,-1,'','StartersCategory'); showorder();" alt="Add Kebab Starter (2) to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Shami</td>
                    <td>£ 3.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780145,11,'Kebab Starter (2) Shami',3.10,-1,'','StartersCategory'); showorder();" alt="Add Kebab Starter (2) to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Mixed Kebab</h6>
                      <div>Seekh kebab shami kebab and 2 pieces of onion bhaji</div></td>
                    <td></td>
                    <td>£ 3.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780146,12,'Mixed Kebab ',3.99,-1,'','StartersCategory'); showorder();" alt="Add Mixed Kebab to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Garlic Chilli Chicken</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.79</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780147,13,'Garlic Chilli Chicken ',3.79,-1,'','StartersCategory'); showorder();" alt="Add Garlic Chilli Chicken to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Seekh Kebab Roll</h6>
                      <div>2 Pieces of seekh kebab wrapped into a puree</div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780148,14,'Seekh Kebab Roll ',3.95,-1,'','StartersCategory'); showorder();" alt="Add Seekh Kebab Roll to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Lightly Spicy Indian Barbecued Chicken Wings</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780149,15,'Lightly Spicy Indian Barbecued Chicken Wings ',3.70,-1,'','StartersCategory'); showorder();" alt="Add Lightly Spicy Indian Barbecued Chicken Wings to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Lightly Spicy Indian Fried Chicken Wings</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780150,16,'Lightly Spicy Indian Fried Chicken Wings ',3.70,-1,'','StartersCategory'); showorder();" alt="Add Lightly Spicy Indian Fried Chicken Wings to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Poppadom</h6>
                      <div></div></td>
                    <td>Masala</td>
                    <td>£ 0.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780151,17,'Poppadom Masala',0.60,-1,'','StartersCategory'); showorder();" alt="Add Poppadom to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Plain</td>
                    <td>£ 0.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780152,17,'Poppadom Plain',0.60,-1,'','StartersCategory'); showorder();" alt="Add Poppadom to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Mango Chutney</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 0.55</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780153,18,'Mango Chutney ',0.55,-1,'','StartersCategory'); showorder();" alt="Add Mango Chutney to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Onion Chutney</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 0.55</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780154,19,'Onion Chutney ',0.55,-1,'','StartersCategory'); showorder();" alt="Add Onion Chutney to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Mint Sauce</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 0.55</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780155,20,'Mint Sauce ',0.55,-1,'','StartersCategory'); showorder();" alt="Add Mint Sauce to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Lime Pickle</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 0.55</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780156,21,'Lime Pickle ',0.55,-1,'','StartersCategory'); showorder();" alt="Add Lime Pickle to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Chicken Pakora (4)</h6>
                      <div>Deep fried with batter</div></td>
                    <td></td>
                    <td>£ 3.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780157,22,'Chicken Pakora (4) ',3.60,-1,'','StartersCategory'); showorder();" alt="Add Chicken Pakora (4) to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>King Prawn Butterfly</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 4.49</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780158,23,'King Prawn Butterfly ',4.49,-1,'','StartersCategory'); showorder();" alt="Add King Prawn Butterfly to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>King Prawn Puri</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 4.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780159,24,'King Prawn Puri ',4.99,-1,'','StartersCategory'); showorder();" alt="Add King Prawn Puri to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Prawn Puri</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780160,25,'Prawn Puri ',3.95,-1,'','StartersCategory'); showorder();" alt="Add Prawn Puri to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Chicken Chaat</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780161,26,'Chicken Chaat ',3.70,-1,'','StartersCategory'); showorder();" alt="Add Chicken Chaat to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Moducash Chicken</h6>
                      <div>With honey cashew nut minty sweet sauce</div></td>
                    <td></td>
                    <td>£ 3.85</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780162,27,'Moducash Chicken ',3.85,-1,'','StartersCategory'); showorder();" alt="Add Moducash Chicken to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Prawn Cocktail</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780163,28,'Prawn Cocktail ',2.95,-1,'','StartersCategory'); showorder();" alt="Add Prawn Cocktail to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Saffron Mixed Plater</h6>
                      <div>Seekh kebab onion bhaji meat somosa chicken pakora</div></td>
                    <td>For 1</td>
                    <td>£ 4.90</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780164,29,'Saffron Mixed Plater For 1',4.90,-1,'','StartersCategory'); showorder();" alt="Add Saffron Mixed Plater to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>For 2</td>
                    <td>£ 8.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780165,29,'Saffron Mixed Plater For 2',8.95,-1,'','StartersCategory'); showorder();" alt="Add Saffron Mixed Plater to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>For 4</td>
                    <td>£ 15.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780166,29,'Saffron Mixed Plater For 4',15.95,-1,'','StartersCategory'); showorder();" alt="Add Saffron Mixed Plater to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>4 Poppadoms  Chutney Tray</h6>
                      <div>Mint sauce mango chutney lime pickle and onion salad</div></td>
                    <td></td>
                    <td>£ 3.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780167,30,'4 Poppadoms  Chutney Tray ',3.70,-1,'','StartersCategory'); showorder();" alt="Add 4 Poppadoms  Chutney Tray to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>2 Poppadoms  Chutney Tray</h6>
                      <div>Mint sauce mango chutney lime pickle and onion salad</div></td>
                    <td></td>
                    <td>£ 2.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780168,31,'2 Poppadoms  Chutney Tray ',2.60,-1,'','StartersCategory'); showorder();" alt="Add 2 Poppadoms  Chutney Tray to cart"/></td></tr></table></div>
                    </div>
                <div id="TandooridishesCategory" <?php if($category=='TandooridishesCategory') {echo 'style=""';} ?>> <h2>Tandoori dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Tikka Tandoori Main</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 5.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780169,32,'Tikka Tandoori Main Chicken',5.95,-1,'','TandooridishesCategory'); showorder();" alt="Add Tikka Tandoori Main to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.20</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780170,32,'Tikka Tandoori Main Lamb',6.20,-1,'','TandooridishesCategory'); showorder();" alt="Add Tikka Tandoori Main to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Tandoori Chicken (On the Bone)</h6>
                      <div>2 Pieces</div></td>
                    <td></td>
                    <td>£ 5.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780171,33,'Tandoori Chicken (On the Bone) ',5.70,-1,'','TandooridishesCategory'); showorder();" alt="Add Tandoori Chicken (On the Bone) to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Duck Tikka</h6>
                      <div>With pepper tomato and onions</div></td>
                    <td></td>
                    <td>£ 8.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780172,34,'Duck Tikka ',8.50,-1,'','TandooridishesCategory'); showorder();" alt="Add Duck Tikka to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Tandoori King Prawn</h6>
                      <div>With pepper tomato and onions</div></td>
                    <td></td>
                    <td>£ 9.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780173,35,'Tandoori King Prawn ',9.95,-1,'','TandooridishesCategory'); showorder();" alt="Add Tandoori King Prawn to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Tandoori Mixed Grill</h6>
                      <div>Seekh kebab chicken tikka tandori chicken lamb tikka and naan bread</div></td>
                    <td></td>
                    <td>£ 9.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780174,36,'Tandoori Mixed Grill ',9.95,-1,'','TandooridishesCategory'); showorder();" alt="Add Tandoori Mixed Grill to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Shashlik</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780175,37,'Shashlik Chicken',6.95,-1,'','TandooridishesCategory'); showorder();" alt="Add Shashlik to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780176,37,'Shashlik Lamb',6.95,-1,'','TandooridishesCategory'); showorder();" alt="Add Shashlik to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Moducash Chicken</h6>
                      <div>With honey cashew nut minty sweet sauce</div></td>
                    <td></td>
                    <td>£ 7.40</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780177,38,'Moducash Chicken ',7.40,-1,'','TandooridishesCategory'); showorder();" alt="Add Moducash Chicken to cart"/></td></tr></table></div>
                    </div>
                <div id="HousespecialsCategory" <?php if($category=='HousespecialsCategory') {echo 'style=""';} ?>> <h2>House specials</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Jungle E Shashlik</h6>
                      <div>Chicken tikka OR lamb marinated in specially prepared sauce. barbecued with onion pepper and tomato. Cooked with chefs special sauce and mushroom</div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780178,39,'Jungle E Shashlik Chicken Tikka',7.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Jungle E Shashlik to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780179,39,'Jungle E Shashlik Lamb Tikka',7.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Jungle E Shashlik to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Duck Jalfrezi</h6>
                      <div>Fairly hot barbecued in the tandoori and stir fried with chopped onions tomatoes peppers and fresh green chillies Fairly hot</div></td>
                    <td></td>
                    <td>£ 8.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780180,40,'Duck Jalfrezi ',8.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Duck Jalfrezi to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Sizzling Duck</h6>
                      <div>Medium tender pieces of duck served on a hot iron skillet when you dine in with onions peppers aromatic herbs and spices with fresh coriander in a bhuna sauce Medium</div></td>
                    <td></td>
                    <td>£ 8.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780181,41,'Sizzling Duck ',8.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Sizzling Duck to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Monohari</h6>
                      <div>Traditional Bangladeshi dish cooked with peppers green chillies ginger and tomatoes topped with fresh coriander</div></td>
                    <td>Chicken</td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780182,42,'Monohari Chicken',7.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Monohari to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780183,42,'Monohari Lamb',7.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Monohari to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Xacuti Tikka</h6>
                      <div>Cooked with pepper coconut and fresh coriander in delicious thick sauce. A Goan speciality</div></td>
                    <td>Chicken</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780184,43,'Xacuti Tikka Chicken',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Xacuti Tikka to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780185,43,'Xacuti Tikka Lamb',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Xacuti Tikka to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Goan Lamb Shank</h6>
                      <div>A supreme cut given the special Goan treatment full of flavour finished with tomato fresh coriander and potatoes</div></td>
                    <td></td>
                    <td>£ 9.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780186,44,'Goan Lamb Shank ',9.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Goan Lamb Shank to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Joypuri</h6>
                      <div>Authentic delicious Moghul dish cooked with onion jeera coriander tomato fresh herbs and Kashmiri paste Medium</div></td>
                    <td>Chicken</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780187,45,'Joypuri Chicken',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Joypuri to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780188,45,'Joypuri Lamb',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Joypuri to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Mint</h6>
                      <div>Mint flavoured curry cooked with single cream and delicious mild spices Mild</div></td>
                    <td>Chicken</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780189,46,'Mint Chicken',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Mint to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780190,46,'Mint Lamb',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Mint to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Al Badami</h6>
                      <div>Mango flavoured curry cooked with nuts spices herbs and finished with cream Mild</div></td>
                    <td>Chicken</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780191,47,'Al Badami Chicken',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Al Badami to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780192,47,'Al Badami Lamb',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Al Badami to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Saffron Chicken Tikka Bhuna</h6>
                      <div>A 7th century dish founded by the people of Bengal cooked with sliced onion green pepper and green chillies fresh coriander. Fairly hot in thick sauce Fairly hot</div></td>
                    <td></td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780193,48,'Saffron Chicken Tikka Bhuna ',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Saffron Chicken Tikka Bhuna to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Satkora Gosht</h6>
                      <div>Cooked with a native  Bangladeshi fruit Shatkorta with a delicately medium spiced thick sauce. A unique flavour Medium</div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780194,49,'Satkora Gosht Lamb',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Satkora Gosht to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Shatkora</h6>
                      <div>Cooked with a native Bangladeshi fruit Shatkorta with a delicately medium spiced thick sauce. A unique flavour Medium</div></td>
                    <td>Chicken</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780195,50,'Shatkora Chicken',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Shatkora to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Butter Chicken</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780196,51,'Butter Chicken ',6.95,-1,'','HousespecialsCategory'); showorder();" alt="Add Butter Chicken to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Chicken Rajshwari</h6>
                      <div>A popular south Indian dish common to locals Tender pieces of chicken cooked in a medium to fairly hot sauce with potatoes and a boiled egg Medium to fairly hot</div></td>
                    <td></td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780197,52,'Chicken Rajshwari ',7.50,-1,'','HousespecialsCategory'); showorder();" alt="Add Chicken Rajshwari to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chadga</h6>
                      <div>A chef special cooked in a rice sauce with onion pepper tomato and homemade naga chilli pickle served in a fairly hot saucec but can be prepared madras vindaloo OR phall strength Fairly hot</div></td>
                    <td>Chicken</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780198,53,'Chadga Chicken',7.50,-1,'','HousespecialsCategory'); showorder();" alt="Add Chadga to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780199,53,'Chadga Lamb',7.50,-1,'','HousespecialsCategory'); showorder();" alt="Add Chadga to cart"/></td></tr></table></div>
                    </div>
                <div id="Chef`sspecialCategory" <?php if($category=='Chef`sspecialCategory') {echo 'style=""';} ?>> <h2>Chef`s special</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Murghi Chana Bhuna</h6>
                      <div>Chicken cooked with chickpeas with medium spicy chef special bhuna sauce. Can be cooked hotter Medium</div></td>
                    <td></td>
                    <td>£ 7.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780200,54,'Murghi Chana Bhuna ',7.10,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Murghi Chana Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Bhindi Bhuna</h6>
                      <div>Cooked with Indian okra in a thick fairly hot sauce also can be cooked mild OR hot</div></td>
                    <td>Chicken</td>
                    <td>£ 7.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780201,55,'Bhindi Bhuna Chicken',7.10,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Bhindi Bhuna to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780202,55,'Bhindi Bhuna King Prawn',7.10,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Bhindi Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 7.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780203,55,'Bhindi Bhuna Lamb',7.10,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Bhindi Bhuna to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Haryali King Prawn</h6>
                      <div>Succulent three pieces of king prawns delicately marinated cooked in a clay oven with pepper tomatoes and onions flavour of garlic and pure Indian butter</div></td>
                    <td></td>
                    <td>£ 9.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780204,56,'Haryali King Prawn ',9.95,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Haryali King Prawn to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>King Prawn Delight</h6>
                      <div>King prawn barbecued in the oven with mild sauce then cooked with yoghurt coconut almond butter in a rice sweet creamy sauce Mild</div></td>
                    <td></td>
                    <td>£ 9.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780205,57,'King Prawn Delight ',9.95,-1,'','Chef`sspecialCategory'); showorder();" alt="Add King Prawn Delight to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Gosht Aloo Bhuna</h6>
                      <div>Tender pieces of lamb cooked with potato in a traditional medium curry sauce. A favourite Bengali curry</div></td>
                    <td></td>
                    <td>£ 7.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780206,58,'Gosht Aloo Bhuna ',7.10,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Gosht Aloo Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Suganda Chicken (Pernod)</h6>
                      <div>Barbecued chicken cooked with pernod coconut almond and creamy mild sauce Mild</div></td>
                    <td></td>
                    <td>£ 7.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780207,59,'Suganda Chicken (Pernod) ',7.10,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Suganda Chicken (Pernod) to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Methi Murgh Balti</h6>
                      <div>Cooked with fenugreek leaves pepper tomato in a red wine and balti sauce medium strength Medium</div></td>
                    <td></td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780208,60,'Methi Murgh Balti ',7.50,-1,'','Chef`sspecialCategory'); showorder();" alt="Add Methi Murgh Balti to cart"/></td></tr></table></div>
                    </div>
                <div id="BaltidishesCategory" <?php if($category=='BaltidishesCategory') {echo 'style=""';} ?>> <h2>Balti dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Balti</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 5.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780209,61,'Balti Chicken',5.95,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780210,61,'Balti Chicken Tikka',6.60,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Duck Tikka</td>
                    <td>£ 8.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780211,61,'Balti Duck Tikka',8.95,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.20</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780212,61,'Balti Lamb',6.20,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780213,61,'Balti Lamb Tikka',6.60,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 6.20</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780214,61,'Balti Prawn',6.20,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780215,61,'Balti Vegetable',4.99,-1,'','BaltidishesCategory'); showorder();" alt="Add Balti to cart"/></td></tr></table></div>
                    </div>
                <div id="Korai(wok)dishesCategory" <?php if($category=='Korai(wok)dishesCategory') {echo 'style=""';} ?>> <h2>Korai (wok) dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Korai</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 5.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780216,62,'Korai Chicken',5.95,-1,'','Korai(wok)dishesCategory'); showorder();" alt="Add Korai to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780217,62,'Korai Chicken Tikka',6.50,-1,'','Korai(wok)dishesCategory'); showorder();" alt="Add Korai to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 8.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780218,62,'Korai King Prawn',8.95,-1,'','Korai(wok)dishesCategory'); showorder();" alt="Add Korai to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.20</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780219,62,'Korai Lamb',6.20,-1,'','Korai(wok)dishesCategory'); showorder();" alt="Add Korai to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780220,62,'Korai Prawn',6.50,-1,'','Korai(wok)dishesCategory'); showorder();" alt="Add Korai to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780221,62,'Korai Vegetable',4.99,-1,'','Korai(wok)dishesCategory'); showorder();" alt="Add Korai to cart"/></td></tr></table></div>
                    </div>
                <div id="MasaladishesCategory" <?php if($category=='MasaladishesCategory') {echo 'style=""';} ?>> <h2>Masala dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Masala</h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 5.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780222,63,'Masala Chicken Tikka',5.99,-1,'','MasaladishesCategory'); showorder();" alt="Add Masala to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Duck Tikka</td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780223,63,'Masala Duck Tikka',7.95,-1,'','MasaladishesCategory'); showorder();" alt="Add Masala to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780224,63,'Masala Lamb Tikka',6.50,-1,'','MasaladishesCategory'); showorder();" alt="Add Masala to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780225,63,'Masala Prawn',6.50,-1,'','MasaladishesCategory'); showorder();" alt="Add Masala to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Tandoori King Prawn</td>
                    <td>£ 8.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780226,63,'Masala Tandoori King Prawn',8.95,-1,'','MasaladishesCategory'); showorder();" alt="Add Masala to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 5.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780227,63,'Masala Vegetable',5.70,-1,'','MasaladishesCategory'); showorder();" alt="Add Masala to cart"/></td></tr></table></div>
                    </div>
                <div id="PasandadishesCategory" <?php if($category=='PasandadishesCategory') {echo 'style=""';} ?>> <h2>Pasanda dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Pasanda</h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780228,64,'Pasanda Chicken Tikka',6.50,-1,'','PasandadishesCategory'); showorder();" alt="Add Pasanda to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780229,64,'Pasanda King Prawn',7.95,-1,'','PasandadishesCategory'); showorder();" alt="Add Pasanda to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780230,64,'Pasanda Lamb Tikka',6.50,-1,'','PasandadishesCategory'); showorder();" alt="Add Pasanda to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 5.25</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780231,64,'Pasanda Vegetable',5.25,-1,'','PasandadishesCategory'); showorder();" alt="Add Pasanda to cart"/></td></tr></table></div>
                    </div>
                <div id="KormadishesCategory" <?php if($category=='KormadishesCategory') {echo 'style=""';} ?>> <h2>Korma dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Korma</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 4.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780232,65,'Korma Chicken',4.99,-1,'','KormadishesCategory'); showorder();" alt="Add Korma to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 8.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780233,65,'Korma King Prawn',8.50,-1,'','KormadishesCategory'); showorder();" alt="Add Korma to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.25</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780234,65,'Korma Lamb',5.25,-1,'','KormadishesCategory'); showorder();" alt="Add Korma to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780235,65,'Korma Vegetable',4.75,-1,'','KormadishesCategory'); showorder();" alt="Add Korma to cart"/></td></tr></table></div>
                    </div>
                <div id="GarlicchillidishesCategory" <?php if($category=='GarlicchillidishesCategory') {echo 'style=""';} ?>> <h2>Garlicchilli dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chilli Masala</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 5.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780236,66,'Chilli Masala Chicken',5.99,-1,'','GarlicchillidishesCategory'); showorder();" alt="Add Chilli Masala to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Duck</td>
                    <td>£ 8.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780237,66,'Chilli Masala Duck',8.99,-1,'','GarlicchillidishesCategory'); showorder();" alt="Add Chilli Masala to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Garlic Chilli Chicken Tikka</td>
                    <td>£ 6.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780238,66,'Chilli Masala Garlic Chilli Chicken Tikka',6.70,-1,'','GarlicchillidishesCategory'); showorder();" alt="Add Chilli Masala to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Garlic Chilli Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780239,66,'Chilli Masala Garlic Chilli Lamb',6.95,-1,'','GarlicchillidishesCategory'); showorder();" alt="Add Chilli Masala to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780240,66,'Chilli Masala King Prawn',7.99,-1,'','GarlicchillidishesCategory'); showorder();" alt="Add Chilli Masala to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780241,66,'Chilli Masala Lamb',6.60,-1,'','GarlicchillidishesCategory'); showorder();" alt="Add Chilli Masala to cart"/></td></tr></table></div>
                    </div>
                <div id="JalfrezidishesCategory" <?php if($category=='JalfrezidishesCategory') {echo 'style=""';} ?>> <h2>Jalfrezi dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Jalfrezi</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 5.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780242,67,'Jalfrezi Chicken',5.99,-1,'','JalfrezidishesCategory'); showorder();" alt="Add Jalfrezi to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780243,67,'Jalfrezi Chicken Tikka',6.50,-1,'','JalfrezidishesCategory'); showorder();" alt="Add Jalfrezi to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 8.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780244,67,'Jalfrezi King Prawn',8.99,-1,'','JalfrezidishesCategory'); showorder();" alt="Add Jalfrezi to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780245,67,'Jalfrezi Lamb',6.75,-1,'','JalfrezidishesCategory'); showorder();" alt="Add Jalfrezi to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780246,67,'Jalfrezi Prawn',6.75,-1,'','JalfrezidishesCategory'); showorder();" alt="Add Jalfrezi to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780247,67,'Jalfrezi Vegetable',4.99,-1,'','JalfrezidishesCategory'); showorder();" alt="Add Jalfrezi to cart"/></td></tr></table></div>
                    </div>
                <div id="NagadishesCategory" <?php if($category=='NagadishesCategory') {echo 'style=""';} ?>> <h2>Naga dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Naga</h6>
                      <div></div></td>
                    <td>Chicken</td>
                    <td>£ 5.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780248,68,'Naga Chicken',5.99,-1,'','NagadishesCategory'); showorder();" alt="Add Naga to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780249,68,'Naga Chicken Tikka',6.50,-1,'','NagadishesCategory'); showorder();" alt="Add Naga to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 8.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780250,68,'Naga King Prawn',8.99,-1,'','NagadishesCategory'); showorder();" alt="Add Naga to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780251,68,'Naga Lamb',6.95,-1,'','NagadishesCategory'); showorder();" alt="Add Naga to cart"/></td></tr></table></div>
                    </div>
                <div id="ClassicsCategory" <?php if($category=='ClassicsCategory') {echo 'style=""';} ?>> <h2>Classics</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Madras</h6>
                      <div>Fairly hot</div></td>
                    <td>Chicken</td>
                    <td>£ 5.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780252,69,'Madras Chicken',5.10,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780253,69,'Madras Chicken Tikka',6.10,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780254,69,'Madras King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780255,69,'Madras Lamb',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780256,69,'Madras Lamb Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780257,69,'Madras Prawn',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780258,69,'Madras Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Madras to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Curry</h6>
                      <div>Medium</div></td>
                    <td>Chicken</td>
                    <td>£ 5.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780259,70,'Curry Chicken',5.10,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780260,70,'Curry Chicken Tikka',6.10,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780261,70,'Curry King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780262,70,'Curry Lamb',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780263,70,'Curry Lamb Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780264,70,'Curry Prawn',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780265,70,'Curry Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Curry to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Rogan Josh</h6>
                      <div>Medium</div></td>
                    <td>Chicken</td>
                    <td>£ 5.55</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780266,71,'Rogan Josh Chicken',5.55,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.55</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780267,71,'Rogan Josh Chicken Tikka',6.55,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780268,71,'Rogan Josh King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780269,71,'Rogan Josh Lamb',5.95,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780270,71,'Rogan Josh Lamb Tikka',6.95,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780271,71,'Rogan Josh Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780272,71,'Rogan Josh Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Rogan Josh to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Pathia</h6>
                      <div>Hot sweet and sour</div></td>
                    <td>Chicken</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780273,72,'Pathia Chicken',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780274,72,'Pathia Chicken Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780275,72,'Pathia King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780276,72,'Pathia Lamb',5.75,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780277,72,'Pathia Lamb Tikka',6.75,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780278,72,'Pathia Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780279,72,'Pathia Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Pathia to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Dupiaza</h6>
                      <div>Medium</div></td>
                    <td>Chicken</td>
                    <td>£ 5.30</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780280,73,'Dupiaza Chicken',5.30,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.30</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780281,73,'Dupiaza Chicken Tikka',6.30,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780282,73,'Dupiaza King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780283,73,'Dupiaza Lamb',5.75,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780284,73,'Dupiaza Lamb Tikka',6.75,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780285,73,'Dupiaza Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780286,73,'Dupiaza Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Dupiaza to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Vindaloo</h6>
                      <div>Extremely hot</div></td>
                    <td>Chicken</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780287,74,'Vindaloo Chicken',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780288,74,'Vindaloo Chicken Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780289,74,'Vindaloo King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780290,74,'Vindaloo Lamb',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780291,74,'Vindaloo Lamb Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780292,74,'Vindaloo Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780293,74,'Vindaloo Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Vindaloo to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Phall</h6>
                      <div>Extremely hot</div></td>
                    <td>Chicken</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780294,75,'Phall Chicken',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780295,75,'Phall Chicken Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780296,75,'Phall King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780297,75,'Phall Lamb',5.50,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780298,75,'Phall Lamb Tikka',6.50,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780299,75,'Phall Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780300,75,'Phall Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Phall to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Dansak</h6>
                      <div>Lentil hot sweet and sour</div></td>
                    <td>Chicken</td>
                    <td>£ 5.30</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780301,76,'Dansak Chicken',5.30,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.30</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780302,76,'Dansak Chicken Tikka',6.30,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780303,76,'Dansak King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780304,76,'Dansak Lamb',5.75,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780305,76,'Dansak Lamb Tikka',6.75,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780306,76,'Dansak Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780307,76,'Dansak Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Dansak to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Bhuna</h6>
                      <div>Medium</div></td>
                    <td>Chicken</td>
                    <td>£ 5.20</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780308,77,'Bhuna Chicken',5.20,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.20</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780309,77,'Bhuna Chicken Tikka',6.20,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780310,77,'Bhuna King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780311,77,'Bhuna Lamb',5.75,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780312,77,'Bhuna Lamb Tikka',6.75,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780313,77,'Bhuna Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780314,77,'Bhuna Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Bhuna to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Saag</h6>
                      <div>Spinach</div></td>
                    <td>Chicken</td>
                    <td>£ 5.25</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780315,78,'Saag Chicken',5.25,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Chicken Tikka</td>
                    <td>£ 6.25</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780316,78,'Saag Chicken Tikka',6.25,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>King Prawn</td>
                    <td>£ 7.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780317,78,'Saag King Prawn',7.50,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb</td>
                    <td>£ 5.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780318,78,'Saag Lamb',5.75,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Lamb Tikka</td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780319,78,'Saag Lamb Tikka',6.75,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Prawn</td>
                    <td>£ 5.35</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780320,78,'Saag Prawn',5.35,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Vegetable</td>
                    <td>£ 4.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780321,78,'Saag Vegetable',4.50,-1,'','ClassicsCategory'); showorder();" alt="Add Saag to cart"/></td></tr></table></div>
                    </div>
                <div id="BiryanidishesCategory" <?php if($category=='BiryanidishesCategory') {echo 'style=""';} ?>> <h2>Biryani dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chicken Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.30</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780322,79,'Chicken Biryani ',6.30,-1,'','BiryanidishesCategory'); showorder();" alt="Add Chicken Biryani to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Lamb Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780323,80,'Lamb Biryani ',6.75,-1,'','BiryanidishesCategory'); showorder();" alt="Add Lamb Biryani to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chicken Tikka Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780324,81,'Chicken Tikka Biryani ',6.99,-1,'','BiryanidishesCategory'); showorder();" alt="Add Chicken Tikka Biryani to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Lamb Tikka Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780325,82,'Lamb Tikka Biryani ',6.99,-1,'','BiryanidishesCategory'); showorder();" alt="Add Lamb Tikka Biryani to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>House Special Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 7.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780326,83,'House Special Biryani ',7.75,-1,'','BiryanidishesCategory'); showorder();" alt="Add House Special Biryani to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Persian Chicken Biryani</h6>
                      <div>With fruits</div></td>
                    <td></td>
                    <td>£ 6.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780327,84,'Persian Chicken Biryani ',6.99,-1,'','BiryanidishesCategory'); showorder();" alt="Add Persian Chicken Biryani to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Prawn Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.59</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780328,85,'Prawn Biryani ',6.59,-1,'','BiryanidishesCategory'); showorder();" alt="Add Prawn Biryani to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>King Prawn Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 7.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780329,86,'King Prawn Biryani ',7.95,-1,'','BiryanidishesCategory'); showorder();" alt="Add King Prawn Biryani to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Vegetable Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780330,87,'Vegetable Biryani ',6.10,-1,'','BiryanidishesCategory'); showorder();" alt="Add Vegetable Biryani to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Mushroom Biryani</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 6.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780331,88,'Mushroom Biryani ',6.10,-1,'','BiryanidishesCategory'); showorder();" alt="Add Mushroom Biryani to cart"/></td></tr></table></div>
                    </div>
                <div id="SidedishesCategory" <?php if($category=='SidedishesCategory') {echo 'style=""';} ?>> <h2>Side dishes</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Bombay Potato</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780332,89,'Bombay Potato ',2.75,-1,'','SidedishesCategory'); showorder();" alt="Add Bombay Potato to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Saag Aloo</h6>
                      <div>Spinach and potato</div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780333,90,'Saag Aloo ',2.75,-1,'','SidedishesCategory'); showorder();" alt="Add Saag Aloo to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Onion Bhaji (4)</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780334,91,'Onion Bhaji (4) ',2.50,-1,'','SidedishesCategory'); showorder();" alt="Add Onion Bhaji (4) to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Aloo Gobi</h6>
                      <div>Potato and cauliflower</div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780335,92,'Aloo Gobi ',2.75,-1,'','SidedishesCategory'); showorder();" alt="Add Aloo Gobi to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Saag Bhaji</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780336,93,'Saag Bhaji ',2.99,-1,'','SidedishesCategory'); showorder();" alt="Add Saag Bhaji to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Saag Paneer</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780337,94,'Saag Paneer ',2.99,-1,'','SidedishesCategory'); showorder();" alt="Add Saag Paneer to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Mutter Paneer</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780338,95,'Mutter Paneer ',2.99,-1,'','SidedishesCategory'); showorder();" alt="Add Mutter Paneer to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Bhindi Bhaji</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780339,96,'Bhindi Bhaji ',2.50,-1,'','SidedishesCategory'); showorder();" alt="Add Bhindi Bhaji to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Brinjal Bhaji</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780340,97,'Brinjal Bhaji ',2.50,-1,'','SidedishesCategory'); showorder();" alt="Add Brinjal Bhaji to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Tarka Daal</h6>
                      <div>Garlic and lentils</div></td>
                    <td></td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780341,98,'Tarka Daal ',2.50,-1,'','SidedishesCategory'); showorder();" alt="Add Tarka Daal to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Cauliflower Bhaji</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780342,99,'Cauliflower Bhaji ',2.75,-1,'','SidedishesCategory'); showorder();" alt="Add Cauliflower Bhaji to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Chana Masala</h6>
                      <div>Chickpeas</div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780343,100,'Chana Masala ',2.75,-1,'','SidedishesCategory'); showorder();" alt="Add Chana Masala to cart"/></td></tr></table></div>
                    </div>
                <div id="RiceCategory" <?php if($category=='RiceCategory') {echo 'style=""';} ?>> <h2>Rice</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Pilau Rice</h6>
                      <div></div></td>
                    <td>Large</td>
                    <td>£ 2.30</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780344,101,'Pilau Rice Large',2.30,-1,'','RiceCategory'); showorder();" alt="Add Pilau Rice to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Regular</td>
                    <td>£ 1.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780345,101,'Pilau Rice Regular',1.99,-1,'','RiceCategory'); showorder();" alt="Add Pilau Rice to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Boiled Rice</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 1.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780346,102,'Boiled Rice ',1.99,-1,'','RiceCategory'); showorder();" alt="Add Boiled Rice to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Egg Fried Rice</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780347,103,'Egg Fried Rice ',2.75,-1,'','RiceCategory'); showorder();" alt="Add Egg Fried Rice to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Garlic Rice</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780348,104,'Garlic Rice ',2.75,-1,'','RiceCategory'); showorder();" alt="Add Garlic Rice to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Mushroom Fried Rice</h6>
                      <div>Large</div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780349,105,'Mushroom Fried Rice ',2.75,-1,'','RiceCategory'); showorder();" alt="Add Mushroom Fried Rice to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Onion Rice</h6>
                      <div>Large</div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780350,106,'Onion Rice ',2.75,-1,'','RiceCategory'); showorder();" alt="Add Onion Rice to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Mixed Vegetable Rice</h6>
                      <div>Large</div></td>
                    <td></td>
                    <td>£ 2.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780351,107,'Mixed Vegetable Rice ',2.75,-1,'','RiceCategory'); showorder();" alt="Add Mixed Vegetable Rice to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Keema Rice</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780352,108,'Keema Rice ',3.95,-1,'','RiceCategory'); showorder();" alt="Add Keema Rice to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Lime Fried Rice</h6>
                      <div>Large</div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780353,109,'Lime Fried Rice ',2.99,-1,'','RiceCategory'); showorder();" alt="Add Lime Fried Rice to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Lemon Fried Rice</h6>
                      <div>Large</div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780354,110,'Lemon Fried Rice ',2.99,-1,'','RiceCategory'); showorder();" alt="Add Lemon Fried Rice to cart"/></td></tr></table></div>
                    </div>
                <div id="BreadCategory" <?php if($category=='BreadCategory') {echo 'style=""';} ?>> <h2>Bread</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Plain Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.10</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780355,111,'Plain Naan ',2.10,-1,'','BreadCategory'); showorder();" alt="Add Plain Naan to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Garlic Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780356,112,'Garlic Naan ',2.60,-1,'','BreadCategory'); showorder();" alt="Add Garlic Naan to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Peshwari Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.40</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780357,113,'Peshwari Naan ',2.40,-1,'','BreadCategory'); showorder();" alt="Add Peshwari Naan to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Keema Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.40</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780358,114,'Keema Naan ',2.40,-1,'','BreadCategory'); showorder();" alt="Add Keema Naan to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Stuffed Vegetable Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.65</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780359,115,'Stuffed Vegetable Naan ',2.65,-1,'','BreadCategory'); showorder();" alt="Add Stuffed Vegetable Naan to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Cheese Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.65</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780360,116,'Cheese Naan ',2.65,-1,'','BreadCategory'); showorder();" alt="Add Cheese Naan to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Garlic  Cheese Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780361,117,'Garlic  Cheese Naan ',3.50,-1,'','BreadCategory'); showorder();" alt="Add Garlic  Cheese Naan to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chilli Cheese Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780362,118,'Chilli Cheese Naan ',2.95,-1,'','BreadCategory'); showorder();" alt="Add Chilli Cheese Naan to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Puri</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 1.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780363,119,'Puri ',1.60,-1,'','BreadCategory'); showorder();" alt="Add Puri to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chapatti</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 1.60</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780364,120,'Chapatti ',1.60,-1,'','BreadCategory'); showorder();" alt="Add Chapatti to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Paratha</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780365,121,'Paratha ',2.99,-1,'','BreadCategory'); showorder();" alt="Add Paratha to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chilli Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780366,122,'Chilli Naan ',2.50,-1,'','BreadCategory'); showorder();" alt="Add Chilli Naan to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Cheese  Onion Naan</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 2.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780367,123,'Cheese  Onion Naan ',2.99,-1,'','BreadCategory'); showorder();" alt="Add Cheese  Onion Naan to cart"/></td></tr></table></div>
                    </div>
                <div id="SundriesCategory" <?php if($category=='SundriesCategory') {echo 'style=""';} ?>> <h2>Sundries</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Chips</h6>
                      <div>Large</div></td>
                    <td></td>
                    <td>£ 1.75</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780368,124,'Chips ',1.75,-1,'','SundriesCategory'); showorder();" alt="Add Chips to cart"/></td></tr></table></div>
                    </div>
                <div id="ChickenwingsCategory" <?php if($category=='ChickenwingsCategory') {echo 'style=""';} ?>> <h2>Chicken wings</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Sizzling Chicken Wings Main</h6>
                      <div>Served sizzling (when you dine in) barbecued with fresh Indian herb and spices for unique flavour</div></td>
                    <td></td>
                    <td>£ 6.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780369,125,'Sizzling Chicken Wings Main ',6.99,-1,'','ChickenwingsCategory'); showorder();" alt="Add Sizzling Chicken Wings Main to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Jalfrezi Chicken Wings Main</h6>
                      <div>Barbecued in the tandoor oven with chefs special Indian spices then cooked with fresh pepper tomato onion fresh green chilli coriander in a delicious fairly hot sauce Fairly hot</div></td>
                    <td></td>
                    <td>£ 7.70</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780370,126,'Jalfrezi Chicken Wings Main ',7.70,-1,'','ChickenwingsCategory'); showorder();" alt="Add Jalfrezi Chicken Wings Main to cart"/></td></tr></table></div>
                    </div>
                <div id="DessertsCategory" <?php if($category=='DessertsCategory') {echo 'style=""';} ?>> <h2>Desserts</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Kulfi Ice Cream</h6>
                      <div></div></td>
                    <td>Mango</td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780371,127,'Kulfi Ice Cream Mango',2.50,-1,'','DessertsCategory'); showorder();" alt="Add Kulfi Ice Cream to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6></h6>
                      <div></div></td>
                    <td>Pstachio</td>
                    <td>£ 2.50</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780372,127,'Kulfi Ice Cream Pstachio',2.50,-1,'','DessertsCategory'); showorder();" alt="Add Kulfi Ice Cream to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Coconut Supreme</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780373,128,'Coconut Supreme ',3.95,-1,'','DessertsCategory'); showorder();" alt="Add Coconut Supreme to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Nouka</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780374,129,'Nouka ',3.95,-1,'','DessertsCategory'); showorder();" alt="Add Nouka to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Royal Pot</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780375,130,'Royal Pot ',3.95,-1,'','DessertsCategory'); showorder();" alt="Add Royal Pot to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Amareena</h6>
                      <div></div></td>
                    <td></td>
                    <td>£ 3.95</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780376,131,'Amareena ',3.95,-1,'','DessertsCategory'); showorder();" alt="Add Amareena to cart"/></td></tr></table></div>
                    </div>
                <div id="SetmealsCategory" <?php if($category=='SetmealsCategory') {echo 'style=""';} ?>> <h2>Set meals</h2>
                            <div id="categoryinfo">
                <table class="menutable">
                  <tr class="headtxt">
                    <th width="57%">Item</th>
                    <th width="28%"></th>
                    <th width="9%">Price</th>
                    <th width="6%">Add</th>
                  </tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Set Meal A</h6>
                      <div>Chicken or lamb korma or curry or madras Pilau rice Papadom and onion salad</div></td>
                    <td></td>
                    <td>£ 6.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780377,132,'Set Meal A ',6.99,-1,'','SetmealsCategory'); showorder();" alt="Add Set Meal A to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Set Meal B</h6>
                      <div>Chicken pasanda or lamb tikka pasanda Pilau rice Poppadom and onion salad</div></td>
                    <td></td>
                    <td>£ 7.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780378,133,'Set Meal B ',7.99,-1,'','SetmealsCategory'); showorder();" alt="Add Set Meal B to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Set Meal C</h6>
                      <div>Chicken or lamb tikka masala or chicken tikka jalfrezi Pilau rice Poppadom and salad</div></td>
                    <td></td>
                    <td>£ 7.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780379,134,'Set Meal C ',7.99,-1,'','SetmealsCategory'); showorder();" alt="Add Set Meal C to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Set Meal D for 1 Person</h6>
                      <div>Poppadom chutney Onion bhaji Chicken tikka masala or madras or korma Pilau rice and naan</div></td>
                    <td></td>
                    <td>£ 9.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780380,135,'Set Meal D for 1 Person ',9.99,-1,'','SetmealsCategory'); showorder();" alt="Add Set Meal D for 1 Person to cart"/></td></tr>
                  <tr class="even">
                    <td rowspan="1"><h6>Set Meal E For 2 Persons</h6>
                      <div>Poppadom chutney Onion bhaji Chicken tikka masala (starter) Chicken tikka masala Chicken jalfrezi Bombay potato Pilau rice Naan bread</div></td>
                    <td></td>
                    <td>£ 19.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780381,136,'Set Meal E For 2 Persons ',19.99,-1,'','SetmealsCategory'); showorder();" alt="Add Set Meal E For 2 Persons to cart"/></td></tr>
                  <tr class="odd">
                    <td rowspan="1"><h6>Set Meal F For 1 Person</h6>
                      <div>Poppadom Chutney Vegetable saamosa Vegetable balti or korma or masala Pilau rice and naan</div></td>
                    <td></td>
                    <td>£ 9.99</td><td><img src="https://www.eateasy.co.uk/images/button-add.gif" onclick="addItem(6780382,137,'Set Meal F For 1 Person ',9.99,-1,'','SetmealsCategory'); showorder();" alt="Add Set Meal F For 1 Person to cart"/></td></tr></table></div></div>
                <div id="itemselects" <?php if ($category != 'ItemSelects') { echo 'style="display:none"'; } ?>>
                    <p> </p>
                    <div id="formheading">
                        <h3>Choices for <?php echo htmlspecialchars($getitemname); ?></h3>
                    </div>
                    <p> </p>
                    <p>Click on the boxes below to select all options available</p>
                    <p> </p>
                    <form id="selectsform" name="selectsform" method="get" action="">
                        
                        <input type="hidden" id="fprice"    name="price"    value="<?php echo htmlspecialchars($getprice); ?>">
                        <input type="hidden" id="fitemid"   name="itemid"   value="<?php echo htmlspecialchars($getitemid); ?>">
                        <input type="hidden" id="fmenuid"   name="menuid"   value="<?php echo htmlspecialchars($getmenuid); ?>">
                        <input type="hidden" id="fitemname" name="itemname" value="<?php echo urlencode($getitemname); ?>">
                        <input type="hidden" id="fcategory" name="category" value="<?php echo htmlspecialchars($savedcategory); ?>">
                        <input type="hidden" name="act" value="add">
                        <input type="submit" class="itemsubmit" id="submit" value="Save Changes">
                    </form>
                    <p> </p>
                </div>
            </div>
        </div>
        </div><!-- /#menucontents -->

        <!-- Order panel -->
        <div id="orderform" class="tab-pane<?php echo $activeTab === 'orderform' ? ' active' : ''; ?>">
        <img src="https://www.eateasy.co.uk/images/shopping_basket.gif" width="40" height="40" alt="Shopping Basket">
        <h3>Order Details</h3>
        <div id="categoryframe"></div>
        <div id="order">
            <?php if ($Cart->hasItems()): ?>
                <form action="#" method="get">
                    <!-- Returning to order tab after quantity update -->
                    <input type="hidden" name="category" value="orderform">
                    <table id="cart">
                        <tr class="headtxt">
                            <th style="display:none;" width="1">Id</th>
                            <th width="60">Item</th>
                            <th width="45">Price</th>
                            <th width="23">Qty</th>
                            <th width="45">Total</th>
                            <th width="15">Del</th>
                        </tr>
                        <?php
                        $_SESSION['actualdiscount'] = 0;
                        $_SESSION['actualdelivery'] = 0;
                        $total_quantity = 0;
                        $total_price = $i = 0;
                        foreach ($Cart->getItems() as $menuid => $menuvalue):
                            foreach ($menuvalue as $choices => $choicesvalue):
                                foreach ($choicesvalue as $content => $value):
                                    if ($content == "quantity") { $quantity = $value; }
                                    if ($content == "itemname") { $itemname = $value; }
                                    if ($content == "itemid")   { $itemid   = $value; }
                                    if ($content == "orderid")  { $orderid  = $value; }
                                    if ($content == "price")    { $price    = $value; }
                                endforeach;
                                $total_price    = $total_price + $price * $quantity;
                                $total_quantity = $total_quantity + $quantity;
                        ?>
                            <?php echo $i++ % 2 == 0 ? "<tr>" : "<tr class='odd'>"; ?>
                            <td style="display:none;" class="item_id"><?php echo htmlspecialchars($itemid); ?></td>
                            <td class="item_name" colspan="5"><?php echo htmlspecialchars($itemname . ' ' . $choices); ?></td>
                            </tr><tr>
                            <td></td>
                            <td class="unit_price">£<?php echo CurrencyCheck($price); ?></td>
                            <td class="quantity center"><input type="text" name="quantity[<?php echo htmlspecialchars($orderid); ?>]" size="2" width="10" value="<?php echo htmlspecialchars($quantity); ?>" tabindex="<?php echo $i; ?>"></td>
                            <td class="extended_price">£<?php echo CurrencyCheck(($price * $quantity)); ?></td>
                            <td class="remove"><img src="https://www.eateasy.co.uk/images/button-remove.gif" onclick="this.blur(); return removeItem(<?php echo htmlspecialchars($menuid); ?>,'<?php echo htmlspecialchars($choices); ?>');" alt="Remove <?php echo htmlspecialchars($itemname); ?> from cart"></td>
                            </tr>
                        <?php endforeach; ?>
                        <?php endforeach; ?>
                        <?php $_SESSION['totalquantity'] = $total_quantity; ?>
                        <?php echo $i++ % 2 == 0 ? "<tr>" : "<tr class='odd'>"; ?>
                            <td></td><td colspan="2">Total</td>
                            <td colspan="3" id="total_price">£<?php echo CurrencyCheck($total_price); ?></td>
                        </tr>
                        <?php
                        if (isset($_SESSION['discount']) && $_SESSION['discount'] > 0) {
                            echo $i++ % 2 == 0 ? "<tr>" : "<tr class='odd'>";
                            echo '<td></td><td class="item_name">' . htmlspecialchars(rtrim($_SESSION['discountname'])) . '</td><td>Discount</td>';
                            echo '<td colspan="3">-£ ' . CurrencyCheck($_SESSION['discount']) . '</td></tr>';
                            $total_price = $total_price - $_SESSION['discount'];
                            $_SESSION['actualdiscount'] = $_SESSION['discount'];
                        }
                        if (isset($_SESSION['islate']) && $_SESSION['islate'] && $_SESSION['delivery_charge_late'] > 0) {
                            $latecharge = $_SESSION['delivery_charge_late'];
                        } else {
                            $latecharge = 0;
                        }
                        if ($_SESSION['deliverycharge'] > 0 && ($_SESSION['deliverythreshold'] > $total_price || $_SESSION['deliverythreshold'] == 0)) {
                            $deliveryamountcharge = $_SESSION['deliverycharge'];
                        } else {
                            $deliveryamountcharge = 0;
                        }
                        if (isset($_SESSION['distancecharge'])) {
                            $distancecharge = $_SESSION['distancecharge'];
                        } else {
                            $distancecharge = 0;
                        }
                        $totaldeliverycharge = $distancecharge + $deliveryamountcharge + $latecharge;
                        echo $i++ % 2 == 0 ? "<tr>" : "<tr class='odd'>";
                        echo '<td></td><td colspan="2">Delivery</td>';
                        echo '<td colspan="3">£ ' . CurrencyCheck($totaldeliverycharge) . '</td></tr>';
                        echo '<tr><td></td><td colspan="2">Total</td>';
                        echo '<td colspan="3">£ ' . CurrencyCheck($totaldeliverycharge + $total_price) . '</td></tr>';
                        $_SESSION['OrderTotal']    = $totaldeliverycharge + $total_price;
                        $_SESSION['actualdelivery']= $totaldeliverycharge;
                        ?>
                        <tr class="headtxt"><th colspan="6"> </th></tr>
                    </table>
                    <input type="submit" name="update" value="Update cart">
                </form>
                <p> </p>
            <?php else: ?>
                <p class="center">You have no items in your cart.</p>
            <?php endif; ?>
        </div>

        <?php
        if ($_SESSION['restactive'] != "Y") {
            echo '<p><img src="https://www.eateasy.co.uk/images/ordering-unavailable-sign.png" alt="Takeaway Unavailable" /></p>
                <p> </p>
                <a href="https://www.eateasy.co.uk/register.php" style="display:inline-block;background:#D5E3F0;color:#1a2535;border:1px solid #000;border-radius:6px;padding:.45rem 1rem;font-family:DM Sans,sans-serif;font-size:.85rem;font-weight:600;text-decoration:none">Register for alerts</a>
                <h4> to receive an SMS or email alert<br>when we launch in your area</h4>';
        } else {
            if ($_SESSION['openclose']) {
                echo '<p><img src="https://www.eateasy.co.uk/images/open-sign.png" alt="Restaurant Open" /></p>';
            } else {
                echo '<p><img src="https://www.eateasy.co.uk/images/completely-closed-sign.png" alt="Restaurant Closed" /></p>';
            }
        }
        ?>
        <p> </p>
        <?php
        if ($_SESSION['restactive'] == "Y") {
            echo '<div id="cashondelivery">
                <h4>' . htmlspecialchars($CODtitle) . '</h4>
                <p> </p>
                <form method="post" action="https://www.eateasy.co.uk/nvpprocessing/CODconfirm.php" name="DoDirectPaymentForm">
                    <input name="method" type="submit" class="center" value="Cash Checkout" ' . $cashdisabled . '>
                </form>
                <p>Add comment at checkout</p>
            </div>';
        }
        ?>

        <div id="deliverydetails">
            <h3>Home Delivery Address</h3>
            <p> </p>
            <?php
            if (isset($_SESSION['loginstatus']) && $_SESSION['loginstatus'] == "IN") {
                echo "<p>" . htmlspecialchars(trim($_SESSION['title']) . " " . trim($_SESSION['firstname'] . " " . trim($_SESSION['lastname']))) . "</p>";
                echo "<p>" . htmlspecialchars(rtrim($_SESSION['address1']) . rtrim(" " . $_SESSION['address2']) . ", " . rtrim($_SESSION['city']) . ", " . rtrim($_SESSION['county']) . " " . rtrim($_SESSION['postcode'])) . "</p>";
                echo "<p>Tel: " . htmlspecialchars($_SESSION['phone']) . "</p>";
                echo "<p>Mob: " . htmlspecialchars($_SESSION['mobile']) . "</p>";
            } else {
                echo '<p style="display:flex;gap:.5rem;flex-wrap:wrap;margin:.5rem 0">
                    <a href="https://www.eateasy.co.uk/login.php" style="display:inline-block;background:#D5E3F0;color:#1a2535;border:1px solid #000;border-radius:6px;padding:.45rem 1rem;font-family:DM Sans,sans-serif;font-size:.85rem;font-weight:600;text-decoration:none">Login</a>
                    <span style="line-height:2">or</span>
                    <a href="https://www.eateasy.co.uk/register.php" style="display:inline-block;background:#D5E3F0;color:#1a2535;border:1px solid #000;border-radius:6px;padding:.45rem 1rem;font-family:DM Sans,sans-serif;font-size:.85rem;font-weight:600;text-decoration:none">Register</a>
                    </p>';
            }
            ?>
            <div itemscope itemtype="https://schema.org/Restaurant">
                <h3>Restaurant Details</h3>
                <p> </p>
                <p><span itemprop="name"><?php echo htmlspecialchars(trim($_SESSION['restname'])); ?></span></p>
                <p><span itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
                    <span itemprop="streetAddress"><?php echo htmlspecialchars(rtrim($_SESSION['restaddress1'] . rtrim(" " . $_SESSION['restaddress2']))); ?></span>,
                    <span itemprop="addressLocality"><?php echo htmlspecialchars(rtrim($_SESSION['restcity'])); ?></span>,
                    <span itemprop="addressRegion"><?php echo htmlspecialchars(rtrim($_SESSION['restcounty'])); ?></span>,
                    <span itemprop="postalCode"><?php echo htmlspecialchars(rtrim($_SESSION['restpostcode'])); ?></span>
                </span></p>
                <p><span itemprop="telephone"><?php echo htmlspecialchars($_SESSION['telephone']); ?></span></p>
                <p> </p>
            </div>
            <p><?php echo htmlspecialchars($descriptionlist); ?></p>
            <p> </p>
        </div>
            </div>
        </div>
        </div><!-- /tab-content -->
    </div><!-- /#mainTab -->

<!-- Related restaurants -->
<?php if (!empty($relatedRestaurants)): ?>
<div class="related-section">
    <div style="max-width:1160px;margin:0 auto;padding:0 1.25rem">
        <h2>More <?php echo htmlspecialchars($resttype); ?> Takeaways in <?php echo htmlspecialchars($restcity); ?></h2>
        <div class="related-grid">
            <?php foreach ($relatedRestaurants as $related): ?>
            <a href="<?php echo htmlspecialchars($related['url']); ?>" class="related-card">
                <h3><?php echo htmlspecialchars($related['name']); ?></h3>
                <p>Explore more <?php echo htmlspecialchars($resttype); ?> options</p>
            </a>
            <?php endforeach; ?>
        </div>
    </div>
</div>
<?php endif; ?>

<!-- AdSense -->
<div class="ad-slot" style="max-width:1160px;margin:0 auto;padding:0 1.25rem">
    <ins class="adsbygoogle" style="display:block"
         data-ad-client="ca-pub-4829507070201485"
         data-ad-slot="YOUR_AD_SLOT_ID"
         data-ad-format="auto"
         data-full-width-responsive="true"></ins>
    <script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>

<!-- ═══ FOOTER ═══ -->
<footer class="site-footer">
    <div class="footer-inner">
        <div class="footer-brand">
            <img src="https://www.eateasy.co.uk/images/EatEasyLogoHeaderSmall.png"
                 alt="EatEasy" class="footer-logo" width="110" height="35">
            <address>
                <strong>Eateasy Ltd.</strong><br>
                69 Godmans Lane, Marks Tey, Essex CO6 1NQ
            </address>
            <a href="mailto:info@eateasy.co.uk">info@eateasy.co.uk</a>
        </div>
        <nav class="footer-links" aria-label="Footer navigation">
            <a href="https://www.eateasy.co.uk/delivery-policy.php">Delivery &amp; Service Policy</a>
            <a href="https://www.eateasy.co.uk/terms-and-conditions.php">Terms &amp; Conditions</a>
            <a href="https://www.eateasy.co.uk/quality-policy.php">Quality Policy</a>
            <a href="https://www.eateasy.co.uk/privacy-policy.php">Privacy Policy</a>
            <a href="https://www.eateasy.co.uk/environmental-policy.php">Environmental Policy</a>
            <a href="https://www.eateasy.co.uk/about-us.php">About Us</a>
            <a href="https://www.eateasy.co.uk/contact-us.php">Contact Us</a>
            <a href="https://www.eateasy.co.uk/owner-login.php">Online Owner Login</a>
            <a href="https://eateasy.co.uk/cookie-policy.php">Eateasy Cookie Policy</a>
        </nav>
        <p class="footer-copy">&copy; <?php echo date('Y'); ?> Eateasy Ltd. All rights reserved.</p>
    </div>
</footer>

</body>
</html>
