// Sets focus onto the link associated with the designer to display correct large image
// This will not function properly if any other events are registered with onload

image=unescape(self.document.location.hash.substring(1));
switch (image){
case "ellisbridal":
	id="eb_img1";
	break;
case "augustajones":
	id="aj_img2";
	break;
case "sophiatolli":
	id="st_img3";
	break;
case "ronaldjoyce":
	id="rj_img4";
	break;
case "jennypackman":
	id="jp_img1";
	break;
case "amandawyatt":
	id="aw_img2";
	break;
case "constantina":
	id="c_img3";
	break;
case "sapphire":
	id="s_img4";
	break;
default : id=false;
}
if (id!=false) {
	window.onload=setFocus;
}
	
function setFocus(){
	document.getElementById(id).focus();
}
