/*SHOW PANEL */
$(document).ready(function(){

	$(".menu .tab").hover(function() {
			$(".contentPanel").animate({opacity: "hide", top: "30"}, "fast");
			$(this).next(".contentPanel").animate({opacity: "show", top: "30"}, "slow");
			toTop();
	});

//gallery
	$("#contact").hover(function(){
			$("#contact2").animate({opacity: "show", top: "0"}, "slow");
	});
});


/*SHOW ID */
function tabON(tabId){
	document.getElementById(tabId).style.color="#ff0000";
	}
function tabOFF(tabId){
	document.getElementById(tabId).style.color="#fff";
	}
function goToCnt(cntId){
	content.location.href=cntId+".html";
	}
	



/*SCROLL CONTENT BOX */
scrollStep=4;

timerUp=""
timerDown=""

function toTop(id){
document.getElementById(id).scrollTop=0
}

function scrollDivDown(id){
clearTimeout(timerDown) 
document.getElementById(id).scrollTop+=scrollStep
timerDown=setTimeout("scrollDivDown('"+id+"')",1)
}

function scrollDivUp(id){
clearTimeout(timerUp)
document.getElementById(id).scrollTop-=scrollStep
timerUp=setTimeout("scrollDivUp('"+id+"')",1)
}

function toBottom(id){
document.getElementById(id).scrollTop=document.getElementById(id).scrollHeight
}

function stopMe(){
clearTimeout(timerDown) 
clearTimeout(timerUp)
}

/* PRELOAD */
function preload_imgs(){
if (document.images)
    {
      preload_image_object = new Image();
      image_url = new Array();
image_url[0] = "../img/head.jpg";
image_url[1] = "../img/090410_5725.jpg";
image_url[2] = "../img/090410_5724.jpg";
image_url[3] = "../img/090410_5710.jpg";
image_url[4] = "../img/090410_5687.jpg";
image_url[5] = "../img/090410_5676.jpg";
image_url[6] = "../img/090410_5663.jpg";
image_url[7] = "../img/090410_0525.jpg";
image_url[8] = "../img/090111_1359.jpg";
image_url[9] = "../img/DSC_0063.jpg";
image_url[10] = "../img/DSC_0064.jpg";
image_url[11] = "../img/DSC_0073.jpg";
image_url[12] = "../img/DSC_0074.jpg";
image_url[13] = "../img/DSC_0082.jpg";
image_url[14] = "../img/DSC_0084.jpg";
image_url[15] = "../img/DSC_0097.jpg";
image_url[16] = "../img/DSC_0098.jpg";
image_url[17] = "../img/DSC_0103.jpg";
image_url[18] = "../img/promofront150.gif";
image_url[19] = "../img/itp.jpg";
image_url[20] = "../img/promo2001.jpg";

       var i = 0;
       for(i=0; i<=20; i++) 
         preload_image_object.src = image_url[i];
    }
}
