﻿function MouseOver(id) {

    document["one"].src = "/Images/home/featured_items_trans.jpg";
    document["two"].src = "/Images/home/dream_trans.jpg";
    document["three"].src = "/Images/home/burpy_trans.jpg"
    document["four"].src = "/Images/home/sleeping_bag_trans.jpg";
    document["five"].src = "/Images/home/issie_trans.jpg";
    document["six"].src = "/Images/home/freeshipping_trans.jpg";
    
	var src = id.src;
	src = src.replace(/_trans.jpg/, "_b.jpg");
	id.src = src;

}

function MouseOut(id) {

    document["one"].src = "/Images/home/featured_items_a.jpg";
    document["two"].src = "/Images/home/dream_a.jpg";
    document["three"].src = "/Images/home/burpy_a.jpg"
    document["four"].src = "/Images/home/sleeping_bag_a.jpg";
    document["five"].src = "/Images/home/issie_a.jpg";
    document["six"].src = "/Images/home/freeshipping_a.jpg";
    
	var src = id.src;
	src = src.replace(/_b.jpg/, "_a.jpg");
	id.src = src;

}

function resize() 
{
	var frame = document.getElementById("frame1");
	var htmlheight = document.body.parentNode.scrollheight;
	var windowheight = window.innerheight;

	if (htmlheight < windowheight) 
	{
		document.body.style.height = windowheight + "px";
		frame.style.height = windowheight + "px";
	}
	else
	{
		document.body.style.height = htmlheight + "px";
		frame.style.height = htmlheight + "px";
	} 
} 
