// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Picture1' , 'Picture1LYR', 'img', 'Layout',new Array(
	'Page Loaded',F_functPicture1Action0,'','',0,
	'Page Loaded','Picture1','Show','',0),'',0);
 
	F_pageLoaded('Layout');
}
function F_functPicture1Action0(params) {
var layoutWidth = 600; 
    if(F_NN) {
         var bodyWidth = window.innerWidth;
         var theOffset = (bodyWidth - layoutWidth)/2;
         if(theOffset > 0) {
     document.layers['LayoutLYR'].left=theOffset;
    }
    } else {
         var bodyWidth = document.body.offsetWidth;
         var theOffset = (bodyWidth - layoutWidth)/2;
         if(theOffset > 0) {
        document.all.tags('DIV')
 ['LayoutLYR'].style.left=theOffset;
       }
    }
}


 
$(document).ready( function() {
F_onLoaded();
});
// End Actions


