//javascript
jQuery(document).ready(function($){  
	$('#lines a img').hover(function() {
		
		$(this).stop().animate({ "opacity": 0.5}, 200);
		//$(this).stop().animate({ "height": 100, "opacity": 1}, 200);
		//$('#lines').stop().animate({ "top": "-=50px" }, 200);

	}, function() {
		
		$(this).stop().animate({ "opacity": 1  }, 400);
		//$(this).stop().animate({ "height": 20, "opacity": 1  }, 400);
		//$('#lines').stop().animate({ "top": 0 }, 400);

	});
});