// JavaScript Document
function Load(){
	assign_photo_addon();
}

function assign_photo_addon(){
	p_c = $('picture_collection').getElementsByTagName('img');
	//alert(p_c.length);
	for(i=0;i<p_c.length;i++){
		p_c[i].onmouseover = function(){
			src = this.src;			
			src = src.replace('.jpg', '_up.jpg');			
			this.src = src+'?ids='+Math.random();
		}
		
		p_c[i].onmouseout = function(){
			src = this.src;			
			src = src.replace('_up.jpg', '.jpg');			
			this.src = src+'?ids='+Math.random();
		}
	}
	
}

function set_Design(){
	
}
