﻿var hoverClass = "gsmHover";

$(document).ready(function() {
    $('.gsmHorizontal > .gsmItem').mouseover(function(){
        $(this).find('.gsmSlide').show();
        $(this).find('.gsmVertical').show();
        $(this).find('.gsmVertical > .gsmItem').hover(function() {
            $(this).addClass('gsmHover');
        }, function () {
            $(this).removeClass('gsmHover');
        });
    }).mouseleave(function(){
        $(this).find('.gsmVertical').hide();
        $(this).find('.gsmSlide').hide();        
    });
});