			jQuery(document).ready(function(){

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

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

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