/*
Simple Menu Roll Over
@author Tomasz Dyla
@email tomasz.dyla@ampmedia.com.pl
*/

	function mouseOver(elem){
		elem.style.backgroundColor = '#E0E0E0';
		var ch = elem.getElementsByTagName('a');
		if(ch.length > 0){
			var a = ch[0];
			a.style.color = '#3A3A3A';
		}
	}
	
	function mouseOut(elem){
		elem.style.backgroundColor = '';
		var ch = elem.getElementsByTagName('a');
		if(ch.length > 0){
			var a = ch[0];
			a.style.color = '';
		}
	}