// JavaScript Document
function objectClickEvent(el, href){
	
	el.addEvent('click', function(e){ 
			window.open(href,'mywindow','toolbar=yes, location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes, resizable=yes');
		});
	
}
function footerStyle(e2, origcolor, overcolor){
	var fx = new Fx.Styles(e2, {duration:200, wait:false});
	e2.addEvents({
		'mouseenter': function(e) {
			fx.start({
				color: overcolor
			})
		},
		'mouseleave': function(e) {
			fx.start({
				color: origcolor
			})
		}
	});
}

