/* the following set up rules for behaviour.js */
	var site_rules = {
		/* the following function allows for photo switching for each property */
		'a.sub_img' : function(element) {
			element.onclick = function() {
				document.getElementById('main_img').src = element.childNodes[0].src;
				return false;
			}
		}
	}
	
