﻿/*
    Author: Chris Brown
    Date: 27-08-08
    Description:
*/

$(window).load(function() {

    var menuClassNames = ['community_item', 'thehabit_item', 'guestBook_item'];
    var menuContent = ['<img src="images/template/ppl.jpg" alt="community_image" /><span class="textcontent"><h4>What&#096;s On</h4>Blackfriars Restaurant calendar of events is jam packed with spectacular and traditional celebrations.  \nHave a look through our calendar and try for yourself.</span><a href="/Events.aspx?ID=84"><span id="showmemore">Show me more...</span></a>',
                        '<img src="images/template/thehabit_welcome.jpg" alt="community_image" /><span class="textcontent"><h4>The Habit</h4>To Keep informed with all the latest goings on at Blackfriars join the Habit.<br/>  When you subscribe to our e-newsletter you will be the first to hear about our latest news and events and special offers</span><a href="/Join.aspx?ID=89"><span id="showmemore">Show me more...</span></a>',
                        '<img src="images/template/fruit.jpg" alt="community_image" /><span class="textcontent"><h4>Seasonal Food</h4>As well as being fresh and tasty, seasonal, local and organic produce can also be unpredictable in its availability making exacting recipes difficult. But here you’ll find what’s in season together with some of our more straight forward recipes to make at home.</span><a href="/cal.htm"><span id="showmemore">Show me more...</span></a>'];
    $('.content_main').html(menuContent[0]);    // show defaulted view

    $('.content_nav ul').find('li').each(function(e) {
        $(this).bind("mouseenter", function() {
            $('.content_nav li').removeClass();
            $('.content_nav').find('li').each(function(e) {
                $(this).addClass(menuClassNames[e]);
            });
            $(this).addClass(menuClassNames[e] + "_selected");
            $('.content_main').html(menuContent[e]);
        }).bind("mouseleave", function() {
            //$('.content_nav li').removeClass('content_nav_selected');
            //$('.content_nav li').addClass('content_nav_unselected');
            //$(this).addClass('content_nav_selected');
        });
    });

});