﻿$(document).ready(function() {

    $(window).bind("resize", resizeWindow);
    resizeWindow();

    function resizeWindow(e) {
        var left = ($(window).width() - $("#welcomebox").width()) / 2;
        var top = ($(window).height() - $("#welcomebox").height()) / 2;

        $("#welcomebox").css("top", top + "px");
        $("#welcomebox").css("left", left + "px");

    }

    $(".band")
				.css({
				    opacity: "0.6"
				});

    $("img.band").mouseover(function() {
        $(this)
				.css({
				    opacity: "1.0"
				});
    });


    $("img.band").mouseout(function() {
        $(this)
				    .css({
				        opacity: "0.6"
				    });
    });
});
