// JavaScript Document

function changeStart(id1, id2)
{
	document.getElementById(id1).className = "middleLinkHover";
	document.getElementById(id2).className = "Divider";	
}

function resetStart(id1, id2)
{
	document.getElementById(id1).className = "middleLink";
	document.getElementById(id2).className = "bigMiddleDividerHover";		
}

function changeOption2(id1, id2, id3, mainCss, childCss1, childCss2, acn)
{
	if(acn)
	{
		document.getElementById(id1).className = mainCss;
		document.getElementById(id2).className = "Divider";			
		document.getElementById(id3).className = childCss2;			
	}
	else
	{
		document.getElementById(id1).className = mainCss;
		document.getElementById(id2).className = childCss1;			
		document.getElementById(id3).className = childCss2;			
	}
}
function resetOption2(id1, id2, id3, orgCss, orgHoverCss, acn)
{
	if(acn)
	{
		document.getElementById(id1).className = orgCss;
		document.getElementById(id2).className = "bigMiddleDividerHover2";	
		document.getElementById(id3).className = orgHoverCss;			
	}
	else
	{
		document.getElementById(id1).className = orgCss;
		document.getElementById(id2).className = orgHoverCss;	
		document.getElementById(id3).className = orgHoverCss;			
	}
}

function resetOption3(id1, id2, id3, orgCss, orgHoverCss, orgHoverCss1)
{
	document.getElementById(id1).className = orgCss;
	document.getElementById(id2).className = orgHoverCss;	
	document.getElementById(id3).className = orgHoverCss1;			
}

/*********************Image Preloading**************************************************************************/

function ImagePreLoad()
{
	img1 = new Image(25,62);
	img1.src = "../images/1.jpg";

	img2 = new Image(25,62);
	img2.src = "../images/2.jpg";
	
	img3 = new Image(25,62);
	img3.src = "../images/3.jpg";
	
	img4 = new Image(25,62);
	img4.src = "../images/4.jpg";
	
	img5 = new Image(99,62);
	img5.src = "../images/link_1.jpg";
	
	img6 = new Image(273,62);
	img6.src = "../images/link_2.jpg";
	
	img7 = new Image(101,62);
	img7.src = "../images/link_3.jpg";
	
	img8 = new Image(116,62);
	img8.src = "../images/link_4.jpg";
	
	img9 = new Image(104,62);
	img9.src = "../images/link_5.jpg";
	
	img10 = new Image(93,110);
	img10.src = "../images/lady.jpg";
	
	img11 = new Image(396,137);
	img11.src = "../images/logo.jpg";
	
	img12 = new Image(63,126);
	img12.src = "../images/logo_side.jpg";
	
	img13 = new Image(135,52);
	img13.src = "../images/question.jpg";
	
	img14 = new Image(22,62);
	img14.src = "../images/last_1.jpg";
	
	img15 = new Image(22,62);
	img15.src = "../images/last_2.jpg";
}
