﻿/// <reference path="_vsdocs/jquery.js" />
$(document).ready(function () {
    flashembed("whackacheat", "/includes/games/whackacheat.swf");
    flashembed("shootacheat", "/includes/games/sheenshootout.swf");
    flashembed("spacecheaters", "/includes/games/spacecheaters.swf");
    flashembed("karmashuffle", "/includes/games/karmashuffle.swf");
    flashembed("karmagolf", "/includes/games/karmagolf.swf");
    flashembed("karmaboxing", "/includes/games/karmaboxing.swf");
    
    $('#gamegallery li.play').hover(
    function () {
        $(this).css('cursor', 'pointer');
    },
    function () {
        $(this).css('cursor', 'default');
    }
    );

    $('#gamegallery li.play').click(function (e) {
        var target = $(this).find('a').attr('href');
        window.location = target;
        e.preventDefault();
    });
});
