			$(document).ready(function(){

			$('div#right-side-detail-middle').height($("div#right-bar").height()-328);
			
			function bouncingAnimation ($a) {
				$($a).animate({ marginTop: 255 }, 500);							
				$($a).animate({ marginTop: 245 }, 500);
				$($a).animate({ marginTop: 255 }, 500);							
				$($a).animate({ marginTop: 245 }, 500);						
			}
			
			function animationFinishGif () {
				$('#ballon-man-index').animate({ marginTop: 245, marginLeft: 0 }, 1000);
			}
			
			$('#ballon-pops').css('display', '').ready(function(){
				window.setInterval(function(){animationFinishGif();},1000);
			});
			

			$('#ballon-man-index').mouseover( function() { 
				bouncingAnimation($(this));
			});			

			$('#ballon-man').mouseover( function() { 
				bouncingAnimation($(this));
			});
			
			$('#view-tv-ad').click( function() {
				$('#ballon-pops').css('display', 'none');
				$('#player').css('display', '');
				window.setTimeout(function(){sendEvent('video','playpause');},0);
			});
			
			$('.menu li').hover(function(){
			  $(this).animate({ width: 148 }, 100);
			  $(this).css({ backgroundColor:"#B2296F" });
			},function(){
			  if ($(this).attr("class")!="selected") {
				  $(this).animate({ width: 136 }, 100);
				  $(this).css({ backgroundColor:"#EC429A" });			  
			  }
			});				
			
		});