﻿/// <reference path="~/common/jquery.js" />

/* ---------------------
/	iMapFlickr.com
/
/	Frame Digital (c)2009
/	http://www.framecreatesdigital.com
/
/   javascript to go with site-big.master & site-2col.master file
/* --------------------- */


$(document).ready(function() {

    $("#box-getstarted").attr("url", "/step-one.aspx");
    $("#box-youraccount").attr("url", "/accounts/details.aspx");

    $("div.clickable").click(
                function() {
                    window.location = $(this).attr("url");
                    return false;
                });


    $("#box-youraccount ").hover(
                function() {
                    $(this).css({ cursor: "pointer", background: "#f2ebe0" });
                },
                function() {
                    $(this).css({ cursor: "pointer", background: "#fcf6eb" });
                }
            );

    $("#box-getstarted").hover(
                function() {
                    $(this).css({ cursor: "pointer", background: "#d4ece6" });
                },
                function() {
                    $(this).css({ cursor: "pointer", background: "#e0f7f1" });
                }
            );

});