﻿$(document).ready(function() {
    $(".game-list:first").show();
    $(".cat a").mouseover(function() {
        $(".game-list").removeClass("gray-bg").hide();
        $(".cat li").removeClass("gray-bg");
        $(this).parent().addClass("gray-bg");
        $("#" + $(this).attr("rel")).show();
    });
    $(".game-list a").mouseover(function() {
        $("#packshot").attr("src", $(this).attr("rel"));
    });
    $(".cat li:first").addClass("gray-bg");
    //$("#packshot").attr("src", $(".game-list a:first").attr("rel"));
    $("#other-games select").change(function() {
        window.location = $(this).val();
    });

    $("#coming-soon").click(function() {
        window.location.href = $(".coming-soon a").attr("href");
    });
});