﻿$(document).ready(function() {
    $("div#restaurants a.tam-logo").hover(
            function() {
                $('#locations').slideUp('slow');
            }
		);

    $("div#restaurants a.fivecrowns-logo").hover(
            function() {
                $('#locations').slideUp('slow');
            }
		);

    $("div#restaurants a.carvery-logo").hover(
            function() {
                $('#locations').slideUp('slow');
            }
		);

    $("div#restaurants a.sidedoor-logo").hover(
            function() {
                $('#locations').slideUp('slow');
            }
		);
});
