// open window
function fullOpen(){
	window.open('tour/index.html','cw','width=' + screen.width + ',height=' + screen.width);
}

function fullOpen2(){
	window.open('tour/size1280.html','cw','width=' + screen.width + ',height=' + screen.width);
}

//faq toggle btn
$(document).ready(function() {
	$(".faqList dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".faqList dd").css("display","none");
	$(".faqList dt").click(function(){
		$(this).next().slideToggle("normal");
		});
});

//Window
function nwOpen(wUrl,wName,wOption) {
	window.open(wUrl,wName,wOption);
}

//fade in mouse
$(document).ready(function(){
	$('a.fade img, .fade a').css({background:'#ffffff'}).mouseover(function(){
		$(this).stop().css({opacity:0.2}).animate({opacity:1},500);
	});
});


