// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Advert' , 'AdvertLYR', 'img', 'Layout',null,'',0);
 
	F_OM('virgin' , 'virginLYR', 'img', 'Layout',new Array(
	'Mouse Over','Advert','Set Src','../assets/images/broadband-virgin.jpg',0,
	'Clicked','Layout','Go To','http://allyours.virginmedia.com/websales/service.do?id=2',0),'',0);
 	F_OM('eclipse' , 'eclipseLYR', 'img', 'Layout',new Array(
	'Mouse Over','Advert','Set Src','../assets/images/broadband-eclipse.jpg',0,
	'Clicked','Layout','Go To','http://www.eclipse.net.uk/residential/',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#virginA').bind('click', function(__e) { return (F_e('virgin', F_CL, __e)); } );
	$('#virginA').bind('mouseover', function(__e) { return (F_e('virgin', F_MV, __e)); } );
	$('#eclipseA').bind('click', function(__e) { return (F_e('eclipse', F_CL, __e)); } );
	$('#eclipseA').bind('mouseover', function(__e) { return (F_e('eclipse', F_MV, __e)); } );
});
// End Actions

