$(function(){
	$('body :first-child').addClass('firstChild');
	$('body :last-child').addClass('lastChild');
	$('body :empty').addClass('empty');
	$('body :only-child').removeClass('firstChild');
	$('body :only-child').removeClass('lastChild');
	$('body :only-child').addClass('onlyChild');
	$('a img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_ro', '_ro_f2'));
			}, function(){
				 if (!$(this).hasClass('currentPage')) {
				 $(this).attr('src', $(this).attr('src').replace('_ro_f2', '_ro'));
		}
	});
	$('#header #contact a,#header ul a,#guide li a').css('cursor','pointer').blend();
	$('input:text, input:submit').uniform();
	$('select').jQselectable({
		style: "simpleBox",
		set: "slideDown",
		out: "slideUp",
		pos:20,
		height: 300
	});
	$('#cons a img,#bnr a img,#pageTop a img,#siteTop a img,.contentImg a img,.detailBtn a img,.outline .left a img,.childContent a img').hover(
		function(){
			$(this).stop().fadeTo(400,0.7);
		},
		function(){
			$(this).stop().fadeTo(400,1);
		}
	);
	$('.outline .left a,.childContent a').lightBox();
	$('.childContent > div').flatHeights();
});
