function gallery(id)
	{
		if(id==1){
					document.getElementById("bigimage").style.background = "url(images/aloha/sunset_aloha.jpg)";
					document.getElementById("caption").innerHTML='Sunset aloha';
										}
		if(id==2){
					document.getElementById("bigimage").style.background = "url(images/aloha/sandy_aloha.jpg)";
					document.getElementById("caption").innerHTML='Sandy aloha';
					}
		if(id==3){
					document.getElementById("bigimage").style.background = "url(images/aloha/lei_and_aloha.jpg)";
					document.getElementById("caption").innerHTML='Lei and aloha';
					}
		if(id==4){
					document.getElementById("bigimage").style.background = "url(images/aloha/aloha_shirts.jpg)";
					document.getElementById("caption").innerHTML='Aloha shirts';
					}
		if(id==5){
					document.getElementById("bigimage").style.background = "url(images/aloha/aloha_dresses.jpg)";
					document.getElementById("caption").innerHTML='Aloha dresses';
					}
		
					
	}
	
	

