// JavaScript Document
$(function()
{	
	$("ul li:first-child").addClass("firstChild");
	$("ul li:last-child").addClass("lastChild");

});

$(document).ready(function()
{
	// Default
	$("#tab01").fadeIn();
	$(".creative-service").addClass("active");
	
	$(".online-marketing").hover(function()
	{	$(".block01 a").removeClass("active");
		$(this).addClass("active");
		$(".block01 a").css("z-index","")
		$(this).css("z-index",7);
		$(".creative-service").css("z-index",6);
		$(".tabcontents").hide();
		$("#tab02").fadeIn();
	},function()
	{	$(".tabcontents").hide();
		$("#tab02").show();
		
	});
	
	$(".promotional").hover(function()
	{	$(".block01 a").removeClass("active");
		$(this).addClass("active");
		$(".block01 a").css("z-index","")
		$(this).css("z-index",7);
		$(".creative-service").css("z-index",6);
		$(".tabcontents").hide();
		$("#tab03").show();
		$("#tab02").fadeOut();
	},function()
	{	$(".tabcontents").hide();
		$("#tab03").show();
		
	});
	
	$(".creative-service").hover(function()
	{	$(".block01 a").removeClass("active");
		$(this).addClass("active");
		$(".block01 a").css("z-index","")
		$(this).css("z-index",7);
		$(".creative-service").css("z-index",6);
		$(".tabcontents").hide();
		$("#tab01").show();
	},function()
	{	$(".tabcontents").hide();
		$("#tab01").show();
		
	});
	
	$(".media-management").hover(function()
	{	$(".block01 a").removeClass("active");
		$(this).addClass("active");
		$(".block01 a").css("z-index","")
		$(this).css("z-index",7);
		$(".creative-service").css("z-index",4);
		$(".tabcontents").hide();
		$("#tab04").show();
	},function()
	{	$(".tabcontents").hide();
		$("#tab04").show();
		
	});
});
