
$(document).ready(function(){
		$('#FrameLink1').addClass("active");
		$('.caption').css("right","590px");
		$('.coverimg').css("left","1000px");

$(".caption").stop().animate({right:'0px'},{queue:false,duration:1800});
		$(".coverimg").stop().animate({ left:'1px'},{queue:false,duration:1200});

	$('#FrameLink1').hover(function(){
		$("#HomeFrameLink > ul > li > a").removeClass("active");
		$(this).addClass("active");
		$(".caption2, .caption3").stop().animate({right:'590px'},{queue:false,duration:200});
		$(".coverimg2, .coverimg3").stop().animate({left:'590px'},{queue:false,duration:400});

		$(".caption").stop().animate({right:'0px'},{queue:false,duration:900});
		$(".coverimg").stop().animate({ left:'1px'},{queue:false,duration:600});
	});

	$('#FrameLink2').hover(function(){
		$("#HomeFrameLink > ul > li > a").removeClass("active");
		$(this).addClass("active");
		$(".caption, .caption3").stop().animate({right:'590px'},{queue:false,duration:200});
		$(".coverimg, .coverimg3").stop().animate({left:'590px'},{queue:false,duration:400});

		$(".caption2").stop().animate({top:'170px', right:'0px'},{queue:false,duration:900});
		$(".coverimg2").stop().animate({ left:'1px'},{queue:false,duration:600});
	});

	$('#FrameLink3').hover(function(){
		$("#HomeFrameLink > ul > li > a").removeClass("active");
		$(this).addClass("active");
		$(".caption, .caption2").stop().animate({right:'590px'},{queue:false,duration:200});
		$(".coverimg, .coverimg2").stop().animate({left:'590px'},{queue:false,duration:400});

		$(".caption3").stop().animate({top:'170px', right:'0px'},{queue:false,duration:900});
		$(".coverimg3").stop().animate({ left:'1px'},{queue:false,duration:600});
	});
													   
  });