$(document).ready(function() {
	
	$('.fxbox1 .box_title').delay(500).slideDown(400);
	$('.fxbox2 .box_title').delay(650).slideDown(400);
	$('.fxbox3 .box_title').delay(800).slideDown(400);
	$('.indexframe').delay(100).fadeIn(400);
	$('.requestframe').delay(100).fadeIn(400);
	
	$('.fxbox1').mouseenter(function() {
 		show_frame(1);
	});
	$('.fxbox1').mouseleave(function() {
 		hide_frame(1);
	});
	$('.fxbox2').mouseenter(function() {
 		show_frame(2);
	});
	$('.fxbox2').mouseleave(function() {
 		hide_frame(2);
	});
	$('.fxbox3').mouseenter(function() {
 		show_frame(3);
	});
	$('.fxbox3').mouseleave(function() {
 		hide_frame(3);
	});
	
	$('#phone_info').mouseenter(function() {
 		$(".fxbox1 .box_content").addClass('bgbox4b');
		$(".phone_info_txt").html($("#hi2").html());
	});
	
	$('#phone_info').mouseleave(function() {
 		$(".fxbox1 .box_content").removeClass('bgbox4b');
 		$(".phone_info_txt").html($("#hi1").html());
 		$(".phone_info_txt").fadeIn(1);
	});
	
	$('#info').mouseenter(function() {
		$('#info').clearQueue();
	});
	
	$('#info').mouseleave(function() {
		$('#info').delay(999).fadeOut(77);
	});
	
});
