$(document).ready(function(){
//================================================================================================
// ¸ÞÀÎ¹è³Ê ½ºÅ©¸³Æ®
	$(".slidetabs").tabs(".images > div", {
		effect: 'fade',
		fadeOutSpeed: "slow",
		rotate: true,
		onClick: function(event, tabIndex) {
			var cp = this.getCurrentPane(); // <img src="./images/2.jpg" alt ="" />
			cp_src = $(cp).children("img").attr("src");
			var ct = this.getCurrentTab();  // <a href="http://www.daum.net"></a>
			aa = $(ct).attr("href");
			if(aa != undefined){
				confirm_cp = cp_src.substr((cp_src.length - 6),2);
				$(cp).unbind("click");
				$(cp).click(function(){
					if(confirm_cp == "01"){
						location.href = "/corebiz/corebiz01.php";
						window.open(url, winobj_nm, stat);						
					}else if(confirm_cp == "02"){
						location.href = "/corebiz/corebiz02.php";
					}else if(confirm_cp == "03"){
						location.href = "/corebiz/corebiz03.php";
					}else if(confirm_cp == "04"){
						location.href = "/corebiz/corebiz04.php";
					}else if(confirm_cp == "05"){
						location.href = "/corebiz/corebiz05.php";
						if (window.focus) {newwindow.focus()}
					}else if(confirm_cp == "06"){
						location.href = "/corebiz/corebiz06.php";
					}
					return false;
				});
			}

		}
	}).slideshow();		
	$(".slidetabs").data("slideshow").play();	
//================================================================================================
});
