function image_shuffle_default(obj) {
	obj.style.opacity = 1;
	obj.style.filter = 'alpha(opacity=100)';
}

function image_shuffle_hover(obj) {
	obj.style.opacity = 0.6;
	obj.style.filter = 'alpha(opacity=60)';
}

