function topOver() {
	var body = $('body#top');
	if (body.length > 0) {
		var mainObj = $('#top_main_contents');
		var mainLink = $('#top_main_contents a')[0];
		mainObj.hover(
			function() {
			
			if (jQuery.browser.msie === true) {
				$('#main-over').fadeIn(250).click(function() {
					location.href = mainLink;
				});
				$('#balloon').show().stop().animate({top:10},{duration:200}).click(function() {
					location.href = mainLink;
				});
				$('#top_movie_text img').click(function() {
					location.href = mainLink;
				});
				$('#top_movie_text img').css('top', '-56px');
				$(this).css('cursor', 'pointer');
			} else {
				$('#main-over').fadeIn(250).click(function() {
					location.href = mainLink;
				});
				$('#balloon').show().stop().animate({top:10,opacity:1},{duration:200}).click(function() {
					location.href = mainLink;
				});
				$('#top_movie_text img').click(function() {
					location.href = mainLink;
				});
				$('#top_movie_text img').css('top', '-56px');
				$(this).css('cursor', 'pointer');
			}
			},
			function() {
			
			if (jQuery.browser.msie === true) {
				$('#main-over').fadeOut(200);
				$('#balloon').hide().css('top', 0);
				$('#top_movie_text img').css('top', '0');
			} else {
				$('#main-over').fadeOut(250);
				$('#balloon').show().stop().animate({top:0,opacity:0},{duration:200});
				$('#top_movie_text img').css('top', '0');
			}
			}
		);
		
	}
}

$(function() { topOver() });