﻿$(document).ready(function () {
    $("#IntroContents").attr('title', "Click to enter abbicollins.co.uk");

    $("#IntroContents").click(function () {
        window.location = $(this).find("a.EnterWebsite").attr("href");
    }).hover(function () {
        $(this).css('cursor', 'pointer');
    }, function () {
        $(this).css('cursor', 'auto');
    })
})
