  
	var myrules = {
		
		'ul.ul_Archive a li' : function(element){
			element.onmouseover = function(){
				this.className = "mouseover";
			}
			element.onmouseout = function(){
				this.className = "";
			}
		},
		'p.byline a' : function(element){
			element.onmouseover = function(){
				this.className = "mouseover";
			}
			element.onmouseout = function(){
				this.className = "";
			}
		},
		'ol.fp_PhotoList li' : function(element){
			element.onclick = function(){
				switchImage(this.id);
			}
			element.onmouseover = function(){
				this.className = "mouseover";
			}
			element.onmouseout = function(){
				this.className = "";
			}
		}
	};
	
	Behaviour.register(myrules);


function switchImage(img)	{

	$('iii').src = img;

}
