$(document).ready(sc_init);

function sc_init() {
    $(".menu-hover").each(function(i) {
        $(this).data('org-img', $(this).attr("src"));
        var img = $(this).data('org-img');
        img = img.substr(0,img.length - 4) + "_f2.png";
        var preloadImage = new Image();
        preloadImage.src = img;
        $("<img>").attr("src", img);
        $(this).hover(
            function() {
                var img = $(this).data('org-img');
				var ext = img.substr(img.length-3);
                img = img.substr(0,img.length - 4) + "_f2." + ext;
                $(this).attr("src", img);
            },
            function() {
                $(this).attr("src", $(this).data('org-img'));
            }
            );
    });
}
function vote(q,a) {
    $("#poll-box").load("vote.php?q=" + q + "&a=" + a);
}