﻿$(document).ready(function() {
    var first = true;
    $(".ServiceListLink").each(
            function() {
                if (first) {
                    if ($(this).find(".ServiceListItemImage").html().length > 0) {
                        $(".ServiceListImageChangeable").attr("src", $(this).find(".ServiceListItemImage").html());
                        $(".ServiceListImageLink").attr("href", $(this).find(".ServiceListItemLink").attr("href"));                        
                        first = false;
                    }
                }
                $(this).mouseover(function() {
                    if ($(this).find(".ServiceListItemImage").html().length > 0) {
                        $(".ServiceListImageChangeable").attr("src", $(this).find(".ServiceListItemImage").html());
                        $(".ServiceListImageLink").attr("href", $(this).find(".ServiceListItemLink").attr("href"));                        
                    }
                });

            }

    );
});

