var SITE = function(){
	
    return {
    	
        init : function() {
        	SITE.blockRendering();
        },
        
        showBigImage : function(hash, name, description) {
        	if (hash.length == 32) {
				new Ajax.Request('/admin/', {
					method: 'post',
					parameters: 'func=get_big_image_height&hash='+hash,
					onComplete: function(request) {
						eval('var sizes = '+ request.responseText);
						var height = ((sizes.height) - 38);
						var width  = ((sizes.width) + 8);
						new Insertion.Before("img_" + hash, "<div id='img_big_" + hash + "' style='position: absolute; margin-left: -4px; margin-top: -" + height + "px;'><table width='" + width + "' border='0' cellpadding='0' cellspacing='0' style='float: left; margin: 0 10px 10px 0; '><tr><td style='width: 4px; height: 4px; background: #E5F2D7 url(/gfx/images/content/content_template_1.tpl/content_template_1_content_background_lefttopcorner.jpg) no-repeat;'></td><td style='background-color: #E5F2D7; padding-right: 5px;' align='right'><a href='/items/images/" + hash + "_big.jpg' target='_blank' style='color: #647D2C; text-decoration: none;'>teljes méret</a>&nbsp;&nbsp;&nbsp;<a href='javascript:void(0)' onclick=\"SITE.hideBigImage('img_big_" + hash + "')\" style='color: #647D2C; text-decoration: none;'>bezár</a></td><td style='width: 4px; height: 4px; background: #E5F2D7 url(/gfx/images/content/content_template_1.tpl/content_template_1_content_background_righttopcorner.jpg) no-repeat;'></td></tr><tr><td style='background-color: #E5F2D7;'></td><td><img src='/items/images/" + hash + "_unique.jpg' border='0' /></td><td style='background-color: #E5F2D7;'></td></tr><tr><td style='width: 4px; height: 4px; background: #E5F2D7 url(/gfx/images/content/content_template_1.tpl/content_template_1_content_background_leftbottomcorner.jpg) no-repeat bottom;'></td><td style='background-color: #E5F2D7; font-weight: normal;'><strong>" + name + '</strong><br />' + description + "</td><td style='width: 4px; height: 4px; background: #E5F2D7 url(/gfx/images/content/content_template_1.tpl/content_template_1_content_background_rightbottomcorner.jpg) no-repeat bottom;'></td></tr></table></div>");
					}
				});
        	}
        },
        
        hideBigImage : function(divID) {
        	$(divID).remove();
        },
        
        blockRendering : function() {
        	/*
        	var centerHeight = $('center').offsetHeight;
        	var blockMargin  = (centerHeight - 88);
        	$('leftcenter_bottom').setStyle({
        		margin: blockMargin+'px 0 0 0'
        	});
        	$('rightcenter_bottom').setStyle({
        		margin: blockMargin+'px 0 0 0'
        	});
        	if (navigator.appName != "Microsoft Internet Explorer") {
	        	if (centerHeight > 480) {
		        	$('zaszlok').setStyle({
		        		margin: (blockMargin-330)+'px 0 0 0'
		        	});
	        	}
        	} else {
	        	if (centerHeight > 522) {
		        	$('zaszlok').setStyle({
		        		margin: (blockMargin-380)+'px 0 0 0'
		        	});
	        	}
        	}
        	*/
        }
        
    };
    
}();

Event.observe(window, 'load', function() {
	SITE.init();
});