<!--

	var jEnable = false;

	var showAlert = new Array();
	showAlert['Available'] = 'This exact piece as pictured is available for purchase today!';
	showAlert['Sold'] = 'This item has been sold, but keep browsing, you may find another item that is just as good.';
	showAlert['On Hold'] = 'This piece is On Hold and may become available in the future.';

	showAlert['Genuine Sea Glass'] = "Genuine Sea Glass is found glass in it's natural state,\n no alterations whatsoever have been made to it.";
	showAlert['Fanta Sea Glass ™'] = "Fanta Sea Glass is made to resemble found sea glass.\n It is made from vintage glass bottles and jars and pieces\n of sea glass to large for jewelry";

	function showStatus( x ){
		if(showAlert[x] ){
			alert( showAlert[x] );
		}else{
			alert( x );
		}
	}

	function displaySwap( hide, show ){
		if( jEnable ){
			document.getElementById(hide).style.display = 'none';
			document.getElementById(show).style.display = 'block';
		}
	}
	
	function seachFocus( field ){
		if( field.value == "Search" ) field.value = '';
	}
	
//-->
