// JavaScript Document
/* DomReady Event fires when all Elements are ready, but not images. */
window.addEvent('domready', function() {

	var width = window.innerWidth || (window.document.documentElement.clientWidth || window.document.body.clientWidth);
	var height = window.innerHeight || (window.document.documentElement.clientHeight || window.document.body.clientHeight);	
	
	var bg_img = $('img_bg');
	
	bg_img.setStyle('width', width);
});
