
	var picNums = new Array(), numOutdoor=12, numLawyer=48, path="http://sgkpc.com/";

	picNums[1] = Math.floor(Math.random()*numLawyer) + 1;
	picNums[2] = Math.floor(Math.random()*numOutdoor) + 1;

	picNums[3] = Math.floor(Math.random()*numLawyer) + 1;

	if (picNums[1] == picNums[3] ) 
		picNums[3] = 1;
	while (picNums[1] == picNums[3] ) {
		picNums[3] = picNums[3] + 1;
	};
	
	picNums[4] = Math.floor(Math.random()*numOutdoor) + 1;
 	
	if (picNums[2] == picNums[4] ) {
		picNums[4] = 1; }
	while (picNums[4] == picNums[2] ) {
		picNums[4] = picNums[4] + 1; }
		
	picNums[5] = Math.floor(Math.random()*numLawyer) + 1;
	
	if (picNums[5] == picNums[3] || picNums[5] == picNums[1]) {
		picNums[5] = numLawyer;
		while (picNums[5] == picNums[3] || picNums[5] == picNums[1]) {
			picNums[5] = picNums[5] - 1; }
	}
	

	document.write("<img src=\"" + path + "/wp-content/themes/sgk-v1/images/random/lawyer_" + picNums[1] + ".jpg\" alt=\"SGK\">");
	document.write("<img src=\"" + path + "/wp-content/themes/sgk-v1/images/random/outdoor_" + picNums[2] + ".jpg\" alt=\"SGK\" >");	
	document.write("<img src=\"" + path + "/wp-content/themes/sgk-v1/images/random/lawyer_" + picNums[3] + ".jpg\" alt=\"SGK\" >");
	document.write("<img src=\"" + path + "/wp-content/themes/sgk-v1/images/random/outdoor_" + picNums[4] + ".jpg\" alt=\"SGK\" >");
	document.write("<img src=\"" + path + "/wp-content/themes/sgk-v1/images/random/lawyer_" + picNums[5] + ".jpg\" alt=\"SGK\" >");


 
