﻿$(document).ready(function () {

        $(".item1").hover(function () {
            $("#subMenu1").stop(true, true).css({ 'display': 'block' });
        }, function () {
            $("#subMenu1").fadeOut(700);
        });

        $(".item2").hover(function () {
            $("#subMenu2").stop(true, true).css({ 'display': 'block' });
        }, function () {
            $("#subMenu2").fadeOut(700);
        });



        $("a.gallery").lightBox();
        $(".gallery a").lightBox();


})
