// JavaScript	var originalColor ;function highlight(event,id,color) {	if (event.type == 'mouseover') {		originalColor = document.getElementById(id).style.color ;		document.getElementById(id).style.color = color ;		}	if (event.type == 'mouseout') {		document.getElementById(id).style.color = originalColor ;		}}function showHide(section,reveal) {	if (reveal == 'show') {		document.getElementById(section).style.display = 'block' ;		}	else {		document.getElementById(section).style.display = 'none' ;		}}

function swapContent(section)
{
	var newContent = document.getElementById(section).innHTML ;
	document.getElementById('storefronts').innHTML = newContent ;
}

function popWin(source,w,h){	picWin = window.open(source,'picWin','width='+w+',height='+h+',directories=no,location=no,status=no,toolbar=no,top=10,left=10')}

function popWholesale(event) {
	var x = event.screenX -350;
	var y = event.screenY -320;
	var wholesale_win = window.open('wholesale.html','wholesale','location=no,menubar=no,toolbar=no,directories=no,width=360,height=280');
	wholesale_win.moveTo(x,y);
}