/*****************************
Function name : changeDefaultImage
Return type : boolean
Date created : 02nd August 2008
Date last modified : 02nd August 2008
Author : Gulshan Verma
Last modified by : Gulshan Verma
Comments : This function is used to embed the default image on the index page
User instruction : changeDefaultImage()
************************************/
function changeDefaultImage()
{
//  document.getElementById('Main').style.backgroud = '';
  document.getElementById('main').style.backgroundImage = 'url(common/images/slider/main_products.jpg)';
}
/*****************************
Function name : changeSmallImage
Return type : boolean
Date created : 02nd August 2008
Date last modified : 02nd August 2008
Author : Gulshan Verma
Last modified by : Gulshan Verma
Comments : This function is used to change the image on the home page
User instruction : changeSmallImage()
************************************/
function changeSmallImage(id)
{
	
	if(id == 'img1')
	{
		document.getElementById('main').style.backgroundImage = 'url(common/images/slider/polish_big.jpg)';
		document.getElementById('img1').src = "common/images/guide/maintain_over.jpg";
		document.getElementById('img2').src = "common/images/guide/develop.jpg";
		document.getElementById('img3').src = "common/images/guide/exchange.jpg";
		document.getElementById('img4').src = "common/images/guide/see.jpg";	
		document.getElementById('img5').src = "common/images/guide/manage.jpg";
		document.getElementById('img6').src = "common/images/guide/grow.jpg";	
	}
	else if(id == 'img2')
	{
		document.getElementById('img1').src = "common/images/guide/maintain.jpg";
		document.getElementById('img2').src = "common/images/guide/develop_over.jpg";
		document.getElementById('img3').src = "common/images/guide/exchange.jpg";
		document.getElementById('img4').src = "common/images/guide/see.jpg";
		document.getElementById('img5').src = "common/images/guide/manage.jpg";
		document.getElementById('img6').src = "common/images/guide/grow.jpg";
	}
	else if(id == 'img3')
	{
		document.getElementById('img1').src = "common/images/guide/maintain.jpg";
		document.getElementById('img2').src = "common/images/guide/develop.jpg";
		document.getElementById('img3').src = "common/images/guide/exchange_over.jpg";
		document.getElementById('img4').src = "common/images/guide/see.jpg";
		document.getElementById('img5').src = "common/images/guide/manage.jpg";
		document.getElementById('img6').src = "common/images/guide/grow.jpg";
	}
	else if(id == 'img4')
	{
		document.getElementById('img1').src = "common/images/guide/maintain.jpg";
		document.getElementById('img2').src = "common/images/guide/develop.jpg";
		document.getElementById('img3').src = "common/images/guide/exchange.jpg";
		document.getElementById('img4').src = "common/images/guide/see_over.jpg";
		document.getElementById('img5').src = "common/images/guide/manage.jpg";
		document.getElementById('img6').src = "common/images/guide/grow.jpg";
	}
	else if(id == 'img5')
	{
		document.getElementById('img1').src = "common/images/guide/maintain.jpg";
		document.getElementById('img2').src = "common/images/guide/develop.jpg";
		document.getElementById('img3').src = "common/images/guide/exchange.jpg";
		document.getElementById('img4').src = "common/images/guide/see.jpg";
		document.getElementById('img5').src = "common/images/guide/manage_over.jpg";
		document.getElementById('img6').src = "common/images/guide/grow.jpg";
	}
	else if(id == 'img6')
	{
		document.getElementById('img1').src = "common/images/guide/maintain.jpg";
		document.getElementById('img2').src = "common/images/guide/develop.jpg";
		document.getElementById('img3').src = "common/images/guide/exchange.jpg";
		document.getElementById('img4').src = "common/images/guide/see.jpg";
		document.getElementById('img5').src = "common/images/guide/manage.jpg";
		document.getElementById('img6').src = "common/images/guide/grow_over.jpg";
	}
	
}
