var changing_thumbs = new Array();
function changeThumb(index, i, num_thumbs, path)
{
    if (changing_thumbs[index])
    {
        hidden_image_id = (i + 1) % num_thumbs;
        var image = document.getElementById('preview_' + index);
        image.src = path + i + ".jpg";
        i = i % num_thumbs;
		document.getElementById('hidden_image').src = path + hidden_image_id + ".jpg";
        i++;
        setTimeout("changeThumb('" + index + "'," + i + ", " + num_thumbs + ", '" + path + "')", 600);
    }
}   

function startThumbChange(index, num_thumbs, path)
{    
    changing_thumbs[index] = true;
    changeThumb(index, 7, num_thumbs, path);
}

function endThumbChange(index, path)
{
    changing_thumbs[index] = false;
    var image = document.getElementById('preview_' + index);
	image.src = path + "6.jpg";
}

function favoris() 
{
	if ( navigator.appName != 'Microsoft Internet Explorer' )
	{ 
		window.sidebar.addPanel("rueduporno.net","http://www.rueduporno.net/",""); 
	}
	else { 
		window.external.AddFavorite("http://www.rueduporno.net/","rueduporno.net"); 
	} 
}

function PopupArchiveSexy(idvideo)
{
	document.location = "detail.php?id=" + idvideo;
}

function deroule(id)
{
	var obj = document.getElementById(id);
	if(obj.style.display == 'none') obj.style.display = 'block';
	else  obj.style.display = 'none';
}