		Window.onDomReady(function() {
			var mySlide = new Fx.Slide('subnav').hide();

				$('toggle').addEvent('click', function(e){
					e = new Event(e);
					mySlide.toggle();
					document.getElementById("subnav").style.visibility = "visible";
					e.stop();
				});
 			});
 			
 			Window.onDomReady(function() {
 				var Tips2 = new Tips($$('.Tips2'), {
					initialize:function(){
						this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
					},
					onShow: function(toolTip) {
						this.fx.start(1);
					},
					onHide: function(toolTip) {
						this.fx.start(0);
					}
				});
			});
			
		function openMedia(theURL) {
 			 window.open(theURL,'_blank','width=760,height=425');
		}