﻿$(document).ready(function() {

    $("div#restaurants a.primerib-logo").hover(
            function() {
                doRollOver('/resources/img/landing/hover/ltpr-medallion.jpg');
            },

            function() {
                doRollOut();
            }
		);

    $("div#restaurants a.tam-logo").hover(
            function() {
                defaultPrimeRibLogo();
                doRollOver('/resources/img/landing/hover/tam-exterior.jpg');
                $('#locations').slideUp('slow');
            },

            function() {
                doRollOut();
            }
		);


    $("div#restaurants a.fivecrowns-logo").hover(
            function() {
                doRollOver('/resources/img/landing/hover/fc-ext-marigolds.jpg');
                $('#locations').slideUp('slow');
            },

            function() {
                doRollOut();
            }
		);

    $("div#restaurants a.carvery-logo").hover(
            function() {
                doRollOver('/resources/img/landing/hover/carvery-pr-bleu.jpg');
                $('#locations').slideUp('slow');
            },

            function() {
                doRollOut();
            }
		);

    $("div#restaurants a.sidedoor-logo").hover(
            function() {
                doRollOver('/resources/img/landing/hover/sd-charcuterie-station.jpg');
                $('#locations').slideUp('slow');
            },

            function() {
                doRollOut();
            }
		);



    $("#locations").hover(
        function() {
            doRollOver('/resources/img/landing/hover/ltpr-medallion.jpg');
        }
    );
});
