// fix the corners
wst.get('#programas a').ready(function(){
	wst.get(this)
		.listen('mouseover', function(){
			var img = wst.get(this).children(0);
			var newStyle = {
				position : 'absolute',
				top : '-10px',
				left : '-15px',
				width : '180px',
				height : '84px'
			};
			
			img
				.css(newStyle)
				.parent()
					.css('z-Index', '10');
		})
		.listen('mouseout', function(){
			var img = wst.get(this).children(0);
			var newStyle = {
				position : 'relative',
				top : '0',
				left : '0',
				width : '150px',
				height : '70px'
			};
			
			img
				.css(newStyle)
				.parent()
					.css('z-Index', '1');
		});
});