// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array(
	'Page Loaded',F_functLayoutAction0,'','',0));
	F_OM('Picture4' , 'Picture4LYR', 'img', 'Layout',new Array(
	'Clicked','LayoutRegion1','Display File','./lounge.html',0),'',0);
 	F_OM('Picture5' , 'Picture5LYR', 'img', 'Layout',new Array(
	'Clicked','LayoutRegion1','Display File','./master.html',0),'',0);
 	F_OM('Picture7' , 'Picture7LYR', 'img', 'Layout',new Array(
	'Clicked','LayoutRegion1','Display File','./2nd_master.html',0),'',0);
 	F_OM('Picture11' , 'Picture11LYR', 'img', 'Layout',new Array(
	'Clicked','LayoutRegion1','Display File','./kitchen.html',0),'',0);
 	F_OM('Picture12' , 'Picture12LYR', 'img', 'Layout',new Array(
	'Clicked','LayoutRegion1','Display File','./pool.html',0),'',0);
 	F_OM('Picture13' , 'Picture13LYR', 'img', 'Layout',new Array(
	'Clicked','LayoutRegion1','Display File','./twin.html',0),'',0);
 	F_OM('LayoutRegion1' , 'LayoutRegion1LYR', 'lyr', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
function F_functLayoutAction0(params) {
var layoutWidth = 650; 
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();
	$('#Picture12A').bind('click', function(__e) { return (F_e('Picture12', F_CL, __e)); } );
	$('#Picture11A').bind('click', function(__e) { return (F_e('Picture11', F_CL, __e)); } );
	$('#Picture4A').bind('click', function(__e) { return (F_e('Picture4', F_CL, __e)); } );
	$('#Picture5A').bind('click', function(__e) { return (F_e('Picture5', F_CL, __e)); } );
	$('#Picture13A').bind('click', function(__e) { return (F_e('Picture13', F_CL, __e)); } );
	$('#Picture7A').bind('click', function(__e) { return (F_e('Picture7', F_CL, __e)); } );
});
// End Actions

