// COMPACTED INTO mootools.js
// http://dean.edwards.name/packer/
// JavaScript Document: TIp
		window.addEvent('domready', function(){
			/* Tips 1 */
			var Tips1 = new Tips($$('.Tips1'));
			
			/* Tips 2 */
			var Tips2 = new Tips($$('.Tips2'), {
				initialize:function(){
					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 100, wait: false}).set(0);
				},
				onShow: function(toolTip) {
					this.fx.start(1);
				},
				onHide: function(toolTip) {
					this.fx.start(0);
				}
			});
			
			/* Tips 3 */
			var Tips3 = new Tips($$('.Tips3'), {
				showDelay: 400,
				hideDelay: 400,
				fixed: true
			});
			
			/* Tips 4 */
			var Tips4 = new Tips($$('.Tips4'), {
				className: 'custom'
			});
		}); 
		
// screen resolution
// used in: graphics/wallpapers/view2.php
function get_resolution() {

	height = screen.height;
	width = screen.width;
	
	var idres = ("res" + width + "x" + height);
	//document.write(idres);
	
	var oldHTML = document.getElementById(idres).innerHTML;
	//document.write(oldHTML);
	
	var newHTML = "<span class='thisRes'>" + oldHTML + "</span>";
	//document.write(newHTML);
	
		res = document.getElementById (idres);
		res.innerHTML = newHTML;

}