window.addEvent('domready', function(){
	
	$('hp_podcast').addEvents({
		'click': function() {
			window.location.href="/podcast/";
		},
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			$('hp_podcast_content').set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '150px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			$('hp_podcast_content').set('tween', {}).tween('height', '21px');
		}
	});
	
	$('hp_lgc_tv').addEvents({
		'click': function() {
			window.location.href = "/lgc-tv/";
		},
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			$('hp_lgc_tv_content').set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '150px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			$('hp_lgc_tv_content').set('tween', {}).tween('height', '21px');
		}
	});
	
	
});