$(document).ready(function(){
    
    $(".MenuItem").hover(function(){

    },function(){
        $(this).css("color","#a42c28");
    }).click(function(){
        var rel = $(this).attr("rel");
        var thisDisplay = $("#" + rel).css("display");
        $(".SubMenuItem").slideUp("fast");
        if ( thisDisplay == "none" ) {
            $("#" + rel).slideDown("fast");
        }
        var href = $(this).attr("href");
        if ( typeof href !== 'undefined' && href != "" ) {
            window.location.href = href  ;
        }
    });
    
    
   $(".Link").hover(function(){
        $(this).css("color","#a42c28");
    },function(){
        $(this).css("color","#a42c28");
    });
    
    $(".Link").click(function(){
        var href = $(this).attr("href");
        if ( typeof href !== 'undefined' && href != "" ) {
            window.location.href = href  ;
        }
    }); 
    
    
  
})
