// JavaScript Document

String.prototype.trim = function() {
	return this.replace(/^\s+|\s+$/g,"");
}
String.prototype.ltrim = function() {
	return this.replace(/^\s+/,"");
}
String.prototype.rtrim = function() {
	return this.replace(/\s+$/,"");
}

function light_gallery_image(id) {
	document.getElementById('name_'+id).style.color = '#FFC12C';
	document.getElementById('img_'+id).style.opacity = '0.4';
	document.getElementById('img_'+id).style.filter = 'alpha(opacity=40)';
}

function dark_gallery_image(id) {
	document.getElementById('name_'+id).style.color = '#484848';
	document.getElementById('img_'+id).style.opacity = '1';
	document.getElementById('img_'+id).style.filter = 'alpha(opacity=100)';
}
