﻿

    function load() 
    {
        document.getElementById("img1").style.visibility = "hidden";

	
	var productElement = document.getElementById("pic1_cap");
	if (productElement != null && productElement !== 'undefined')
		{
        		document.getElementById("pic1_cap").style.visibility = "hidden";
		}
		document.getElementById("img2").onmouseover = Function("mouseOver();");
		document.getElementById("img2").onmouseout = Function("mouseOut();");
    }
////////////////
    function mouseOver()
    {
    var temp = document.getElementById("img2").src;
    document.getElementById("img2").src = document.getElementById("img1").src;

	var productElement1 = document.getElementById("pic2_cap");
	if (productElement1 != null && productElement1 !== 'undefined')
		{
        		document.getElementById("pic2_cap").style.visibility = "hidden";
		}

    
	
	var productElement = document.getElementById("pic1_cap");
	if (productElement != null && productElement !== 'undefined')
		{
   			document.getElementById("pic1_cap").style.visibility = "visible";
		}


    document.getElementById("img1").src = temp;  
    }
///////////////////////////

    function mouseOut()
    {
    var temp2 = document.getElementById("img2").src;
    document.getElementById("img2").src = document.getElementById("img1").src;
    document.getElementById("img1").src = temp2;

	var productElement2 = document.getElementById("pic1_cap");
	if (productElement2 != null && productElement2 !== 'undefined')
		{
    			document.getElementById("pic1_cap").style.visibility = "hidden";
		}

    
    
    	var productElement1 = document.getElementById("pic2_cap");
	if (productElement1 != null && productElement1 !== 'undefined')
		{
        		document.getElementById("pic2_cap").style.visibility = "visible";
		}

    }


