function change_color(parent_id,item_id){
	document.getElementById('collection').style.color="#ffffff";
	document.getElementById('services').style.color="#ffffff";
	document.getElementById('about').style.color="#ffffff";
	document.getElementById('media').style.color="#ffffff";
	document.getElementById('boutiques').style.color="#ffffff";
	document.getElementById('news').style.color="#ffffff";
	document.getElementById('contact').style.color="#ffffff";
	var a = document.getElementsByTagName("a");
	//alert(a.length);
	for(i=0;i<a.length;i++){
		//alert(a[i].id);
		if(a[i].name=='menu_item'){
			document.getElementById(a[i].id).style.color="#ffffff";
		}
	}
	document.getElementById(parent_id).style.color="#0095d9";
	document.getElementById(item_id).style.color="#0095d9";

}

function prev(){
	
	prevImgArr = document.getElementById("prev").href.split('#');
	//alert(prevImgArr[1]);
	var prev_img_name = prevImgArr[1];
	var prev_new_img_name = "";
	prev_num = prev_img_name.substring(3,prev_img_name.length);
	
	nextImgArr = document.getElementById("next").href.split('#');
	var next_img_name = nextImgArr[1];
	var next_new_img_name = "";
	next_num = next_img_name.substring(3,next_img_name.length);
	
	if(prev_num > 1){
		prev_img_suffix = Number(prev_num) - 1;
		prev_new_img_name = "img"+prev_img_suffix;
		
		document.getElementById("prev").href="#"+prev_new_img_name;
		
		
		next_img_suffix = Number(next_num) - 1;
		next_new_img_name = "img"+next_img_suffix;
		
		document.getElementById("next").href="#"+next_new_img_name;

		image_id = "img"+(Number(next_num)-1);
		img_path = document.getElementById(image_id).src;
		img_path_arr = img_path.split('/');
		//alert(img_path_arr[img_path_arr.length-1]);
		document.getElementById("img_label").innerHTML = "&nbsp;>&nbsp;"+img_path_arr[img_path_arr.length-1];
	}

}

function next(){
	nextImgArr = document.getElementById("next").href.split('#');
	var next_img_name = nextImgArr[1];
	var next_new_img_name = "";
	next_num = next_img_name.substring(3,next_img_name.length);
	//alert(next_num);
	prevImgArr = document.getElementById("prev").href.split('#');
	var prev_img_name = prevImgArr[1];
	var prev_new_img_name = "";
	prev_num = prev_img_name.substring(3,prev_img_name.length);
	
	if(next_num < 5){
		
		prev_img_suffix = Number(prev_num) + 1;
		prev_new_img_name = "img"+prev_img_suffix;
		
		document.getElementById("prev").href="#"+prev_new_img_name;

		next_img_suffix = Number(next_num) + 1;
		next_new_img_name = "img"+next_img_suffix;
		
		document.getElementById("next").href="#"+next_new_img_name;
	
		image_id = "img"+(Number(next_num)+1);
		img_path = document.getElementById(image_id).src;
		img_path_arr = img_path.split('/');
		//alert(img_path_arr[img_path_arr.length-1]);
		document.getElementById("img_label").innerHTML = "&nbsp;>&nbsp;"+img_path_arr[img_path_arr.length-1];
	}
}
