﻿// Setup global Vars

//Add the startup code to the page
window.addEvent('domready', function() {
    // get items that need to change on mouse over
    $$("#blogmenu li").each(function(e, i, a) {

        var innerDIV = e.getFirst();

        //Mouse Enter
        e.addEvent("mouseenter", function() {

            //innerDIV.morph({ "background-color": "#340000", "height": "200px"});
        e.setStyle("background-color", "#07a1ed");
        });

        //Mouse Leave
        e.addEvent("mouseleave", function() {
        //innerDIV.morph({ "background-color": "#0000ff", "height": "100px" });
            e.setStyle("background-color", "transparent");
        });

    });
});

function xyz() {
    alert("dfgfg");
 }
