window.addEvent('domready', function() {
	new Fx.Style('wg', 'height', { duration : 0 }).start(0, 360);
	
	var links = $$(".tips");
	var divs = $$(".video_wrapper");
	
	links.each(function(link, i) {
		link.addEvents({
			'click':  function(e) {
				new Event(e).stop();
				var el = link.rel;
				var open = $('open_video');
				new Fx.Style(open.value, 'height', { duration : 1000 }).start('360', '0');
				(function(){new Fx.Style(el, 'height', { duration : 1000 }).start('0', '360');}).delay(1000);
				open.value = el;
			},
			'mouseenter' : function() {
				$('hint').setHTML(link.title);
			},
			'mouseleave' : function() {
				$('hint').setHTML("");
			}
		});
	});
});
