
//window.onmouseover = on;
document.onmouseover = on;
document.onmouseout = off;
//document.onclick = clk;

function ok()
{
	return (navigator && (parseInt(navigator.appVersion) >= 3))?true:false;
}

var Roll = new Array();

function AddRoll(entry,image)
{
	if( !Roll )
		return false;

	if( !Roll[entry] )
	{
		Roll[entry] = new Array();
		Roll[entry][0] = image;
//		window.status = "added '"+image+"'";
	}
	else
	{
		var len = Roll[entry].length;
		Roll[entry][len] = new Image();
		Roll[entry][len].src = image;
//		window.status = "added '"+image+"'";
	}
	
	return true;
}

function on()
{
	return false;
}
function off()
{
	return false;
}
function clk()
{
}

/*
$(document).ready(function(){
    alert($(".poll_option").length);
    $(".poll_option").attr("href", "#");
    $(".poll_option").click(function(){
        //Set all poll options off
        $(".poll_option").child("img").attr("src", "img/lm_radio_un_off.gif");
        //Set our spefici one to on
        $(this).child("img").attr("src", "img/lm_radio_se_on.gif");
        //Set the value
        $("#choice").val($(this).attr("name").replace("poll_option"));
        return false;
    });
});
*/
