﻿$(document).ready(function () {

    /////////////////////////////////////////////////////////////////////////////////////////////
    // page fade
    $("body").css("display", "none");

    $("body").fadeIn(2000);

    $("a.transition").click(function (event) {
        event.preventDefault();
        linkLocation = this.href;
        $("body").fadeOut(1000, redirectPage);
    });

    function redirectPage() {
        window.location = linkLocation;
    }

    // no span link
    $("#mailto").text("enquiries@studiofrank.com.au").attr("href", "mailto:enquiries@" + "studiofrank" + ".com.au");

    // Social media link hover
    $("#socialMedia a img").hover(
		function () {
		    var hoverImg = "image/social_icons/" + $(this).attr("alt") + "_on.jpg";
		    $(this).attr("src", hoverImg);
		},
		function () {
		    var hoverImg = "image/social_icons/" + $(this).attr("alt") + ".jpg";
		    $(this).attr("src", hoverImg);
		}
	);
});