var hff = new Array
(
"http://affiliates.queerpower.com/hff/hisfirstfacial-horz-01.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-02.jpg","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-03.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-04.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-05.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-06.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-07.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-08.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-09.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-10.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-11.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-12.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-13.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-14.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-15.gif","http://affiliates.queerpower.com/hff/hisfirstfacial-horz-21.gif"
);

var hff_num = 0;
var current_hff = new Image();
current_hff.src = hff[hff_num];
function start_hff() 
{
setInterval("slidehff()", 4500);
}
function slidehff() 
{
hff_num++;
if (hff_num == hff.length) 
{
hff_num = 0;
}
current_hff.src = hff[hff_num];
document["rotating_hff"].src = current_hff.src;
}


