function products_submenu(id){
	var content;
	var image;
	
	image = 'images/products/' + id + "_featured.png";
	content = document.getElementById(id).innerHTML;
	document.getElementById('current_product').innerHTML = content;
	document.getElementById('current_image').src = image; 
	document.getElementById('buyNowButton').href= "#TB_inline?height=400&width=400&inlineId=" + id +"_buyNow&modal=true";
	
	galleries = document.getElementsByClassName('image_gallery');
	galLen = galleries.length;
	for(i=0; i<galLen;i++){
		element = galleries[i];
		element.style.display = "none";
	}
	

	document.getElementById(id + '_gallery').style.display="inline";	
}


hex=0; // Initial color value.
function fadetext(){ 
	if(hex<255) { //If color is not black yet
		hex+=11; // increase color darkness
		document.getElementById("quote").style.color="rgb("+hex+","+hex+","+hex+")";
		setTimeout("fadetext()",40); 
	}
	else
		hex=0; //reset hex value
}


