// JavaScript Document


		       
MAX_PICTERS=3  <!--max picters to show  in gallery -->
MAX_IMG_VIEW=1 <!--max picters to show in one row-->
<!--don't  touch the code bellow to correct work of the gallery-->
var NAMES_OF_IMAGES=new Array("The fastest and easiest way to get a custom website for your personal or business needs. "," The process is simple. Choose a design, send us your content, we build, and send it to you!","Additional services: Website hosting, email hosting, consulting, maintenance and optimization. ");<!--names of images-->
MIN_PICTERS=1 
count=1	
function gallery_load(){
	if (MAX_IMG_VIEW>MAX_PICTERS){MAX_IMG_VIEW=MAX_PICTERS}		
	
	for (i=1;i<=MAX_IMG_VIEW;i++){	
		document.getElementById('gallery').innerHTML+='<div class="fL" style="width:274px;margin-right:25px; padding-left:34px; padding-top:130px;">'+NAMES_OF_IMAGES[i-1]+'</div>';	
			
	}
	
	for (i=1;i<=MAX_IMG_VIEW;i++){
		document.getElementById('gallery').innerHTML+='<a href="get-started.html"><img src="images/gallery_img_'+i+'.jpg"  alt=""  border="0px" id="main_pic'+i+'"  style="cursor:pointer;margin-right:42px; _margin-right:16px;   align="left" width="407" height="256" />';						
	}
	
	
}								
function gallery(){	
	if (MAX_IMG_VIEW>MAX_PICTERS){MAX_IMG_VIEW=MAX_PICTERS}	
	document.getElementById('gallery').innerHTML='';
	
	
	
	for (i=count;i<(count+MAX_IMG_VIEW);i++){	
		number_of_img=i;
		if (number_of_img>MAX_PICTERS){number_of_img=(i-MAX_PICTERS)}	
		document.getElementById('gallery').innerHTML+='<div class="fL" style="width:274px;margin-right:25px; padding-left:34px;padding-top:130px;">'+NAMES_OF_IMAGES[number_of_img-1]+'</div>';	
			
	}
	
	for (i=count;i<(count+MAX_IMG_VIEW);i++){
		number_of_img=i;
		if (number_of_img>MAX_PICTERS){number_of_img=(i-MAX_PICTERS)}	
		document.getElementById('gallery').innerHTML+='<a href="get-started.html"><img src="images/gallery_img_'+number_of_img+'.jpg"  alt=""  border="0px" id="main_pic'+number_of_img+'" onclick="image_big('+number_of_img+')" style="cursor:pointer;margin-right:42px; _margin-right:16px;   align="left" width="407" height="256"/>';						
	}	
	
	
}
function image_big(numb){					
	for (var i = MIN_PICTERS; i < (MAX_PICTERS+1); i++){
	   if ((document.getElementById('main_pic'+numb).src.indexOf('gallery_img_'+i))!=-1){
		document.getElementById('main').src='images/img_gallery_big_'+i+'.jpg';}				 
	}															
}
function left(){						
	count--;
	if (count<(MIN_PICTERS)){count=MAX_PICTERS}					
	gallery();												
}
function right(){	
	count++;
	if (count>MAX_PICTERS){count=MIN_PICTERS}	
	gallery();	
}	
