function over(){
	if(obj=event.srcElement)
		if(obj.className=="flyoutLink"){
			obj.style.backgroundColor='#869EC2';
			obj.style.borderColor = '#999999';
		}
}
		
function out(){
	if(obj=event.srcElement)
		if(obj.className=="flyoutLink"){
			obj.style.backgroundColor='#5F7BA4';
			obj.style.borderColor = '#5F7BA4';
		}
}

function show(d){
	if(obj=document.all(d))	obj.style.display="";
}
		
function hide(d){
	if(obj=document.all(d))    obj.style.display="none"
}
		
document.onmouseover=over
document.onmouseout=out

/* Products List Bar */
function ProductsOver(){
	if(obj=event.srcElement)
		if(obj.className=="ProductsList"){
			obj.style.backgroundColor='#E5E5E5';
			obj.style.cursor='hand';
		}
}

function ProductsOut(){
	if(obj=event.srcElement)
		if(obj.className=="ProductsList"){
			obj.style.backgroundColor='#CDCDCD';
			obj.style.cursor='default';
		}
}