//preload images
var image1=new Image()
image1.src="images/slider_1.png"
var image2=new Image()
image2.src="images/slider_2.png"
var image3=new Image()
image3.src="images/slider_3.png"
var image4=new Image()
image4.src="images/slider_4.png"
var image5=new Image()
image5.src="images/slider_6.png"

var step=1;
var whichimage=1;
function slideitNumber(imageNumber){
if (!document.images)
{
	return
}
document.images.slide.src=eval("image"+imageNumber+".src");
if (whichimage == 1)
{
whichimage = 5;
}
else
{
whichimage = whichimage -1;
}

}
function slideit(){
if (!document.images)
{
	return
}

document.images.slide.src=eval("image"+step+".src");
whichimage=step;
if (step<5)
{
step++;
}
else
{
step=1;
}
setTimeout("slideit()",5000);
}

function slidelink(){
if (whichimage==1)
window.location="http://www.homeaddiction.com.au/store/category/375-relocation-sale.aspx"
else if (whichimage==2)
window.location="http://www.homeaddiction.com.au/store/products/657-anolon-nouvelle-6-pce-cookware-set.aspx"
else if (whichimage==3)
window.location="http://homeaddiction.com.au/store/products/638-anolon-advanced-24cm-square-grill-withbonus-tongs.aspx"
else if (whichimage==4)
window.location="http://www.facebook.com/homeaddictiononline"
else if (whichimage==5)
window.location="http://www.homeaddiction.com.au/store/"
}
