/*
	
	COMMON LAYOUT
	
	20100519	tomc
*/
window.addEvent("domready",function(){
	/*
		TOP NAV ROLLOVER
	*/
	$$('.frame .head .nav-menu a').each(function(a, index , v){
		var bgA 	= a.clone();
		
		bgA.setStyles({
			position	:'absolute',
			zIndex		:1,
			top			:a.getPosition(a.getParent()).y,
			left		:a.getPosition(a.getParent()).x,
			padding		:'5px 7px',
			borderWidth	:0,
			borderColor	:'#ffffff',
			borderStyle	:'solid',
			opacity		:0,
			color		:'#288aca',
			background	:'#ffffff'
		}).inject(a.getParent());
		
		a.addEvents({
			mouseenter:function(){
				bgA.fade(1);
				a.fade(0);
			},
			mouseleave:function(){
				a.fade(1);
				bgA.fade(0);
			}
		});
	});
	
	
	/*
		SIDE NAV ROLLOVER
	*/
	$$('.frame .body .menu a').each(function(a, index , v){
		var bgA 	= a.clone();
		
		bgA.setStyles({
			position		:'absolute',
			zIndex			:1,
			top				:a.getPosition(a.getParent()).y,
			left			:a.getPosition(a.getParent()).x,
			width			:a.getParent().getSize().x,
			opacity			:0,
			color			:'#ffffff',
			backgroundImage	:'url(' + rootPath + ' grx/sidenav-bg-over-170x28.gif)'
		}).inject(a.getParent());
		
		a.addEvents({
			mouseenter:function(){
				bgA.fade(1);
				a.fade(0);
			},
			mouseleave:function(){
				a.fade(1);
				bgA.fade(0);
			}
		});
	});
});

