﻿/* .blockList li h4 a */

$(document).ready(function() {

    $(".blockList li").hover(function() {
        $(this).attr("class", "blockItemHover");
    }, function() {
        $(this).attr("class", "blockItemNormal");
    });

    $(".blockList li").click(function() {
        window.location = $(this).find("a").eq(0).attr("href");
    });

});

function checkEnter(e){ 
    var characterCode; 

    if(e && e.which){ 
        e = e;
        characterCode = e.which;  
    }
    else{
        e = event;
        characterCode = e.keyCode;
    }

    if(characterCode == 13){ 
        document.forms[0].submit(); 
        return false;
    }
    else{
        return true;
    }

}