// JavaScript Document
function lineIt(h,c,id){
		$('web').setProperty("class", "d_link web_link");
		$('soft').setProperty("class", "d_link soft_link");
		$('comp').setProperty("class", "d_link comp_link");
		$('compwords').style.display = 'none';
		$('softwords').style.display = 'none';
		$('webwords').style.display = 'none';
		
		$(id + 'words').style.display = 'block';
		$(id).setProperty("class", "d_link " + c + "_act");
		$('line').style.height = h;	
	}
	
	window.addEvent('domready', function() { 
		var el = $$('a.link_under');
		el.addEvents({
			'mouseenter': function(){
				this.set('tween', {
					duration: 100
				}).tween('margin-left', '5px');
			},
			'mouseleave': function(){
				this.set('tween', {duration: 100}).tween('margin-left', '0px');
			}
		});								 
										 
	});
