		function toCamelCase(string) {
    var camelCaseString = "";
    for (var i = 0; i < string.length; i ++) {
        if (string.charAt(i) != "-") {
            camelCaseString += string.charAt(i);
        } else {
            camelCaseString += string.charAt(i + 1).toUpperCase();
            i ++;
        }
    }
    return camelCaseString;
}
		
		function setStyle(element, styleName, value) {
				element.style[toCamelCase(styleName)] = value;
		} 
		
function showDetailFotoLarge(value, title, value2) {
	document.getElementById('detailfotolarge').src = value;
	document.getElementById('detail_foto_large_link').href = value2;
	document.getElementById('detail_foto_large_link').title = title;
}

		
