// JavaScript Document


// PRELOADING IMAGES
if(document.images){
	img1_on =new Image(); img1_on.src =DIR_REL+"/images/nav/booksOver.gif"; 
	img1_active =new Image(); img1_active.src =DIR_REL+"/images/nav/booksOn.gif"; 
	img1_off=new Image(); img1_off.src=DIR_REL+"/images/nav/booksOff.gif"; 
	
	img2_on =new Image(); img2_on.src =DIR_REL+"/images/nav/magazinesOver.gif"; 
	img2_active =new Image(); img2_active.src =DIR_REL+"/images/nav/magazinesOn.gif"; 
	img2_off=new Image(); img2_off.src=DIR_REL+"/images/nav/magazinesOff.gif"; 
	
	img3_on =new Image(); img3_on.src =DIR_REL+"/images/nav/postersOver.gif"; 
	img3_active =new Image(); img3_active.src =DIR_REL+"/images/nav/postersOn.gif"; 
	img3_off=new Image(); img3_off.src=DIR_REL+"/images/nav/postersOff.gif"; 
	
	img4_on =new Image(); img4_on.src =DIR_REL+"/images/nav/recordsOver.gif"; 
	img4_active =new Image(); img4_active.src =DIR_REL+"/images/nav/recordsOn.gif"; 
	img4_off=new Image(); img4_off.src=DIR_REL+"/images/nav/recordsOff.gif"; 
	
	img5_on =new Image(); img5_on.src =DIR_REL+"/images/nav/etcOver.gif"; 
	img5_active =new Image(); img5_active.src =DIR_REL+"/images/nav/etcOn.gif"; 
	img5_off=new Image(); img5_off.src=DIR_REL+"/images/nav/etcOff.gif"; 
	
	img6_on =new Image(); img6_on.src =DIR_REL+"/images/nav/aboutOver.gif"; 
	img6_active =new Image(); img6_active.src =DIR_REL+"/images/nav/aboutOn.gif"; 
	img6_off=new Image(); img6_off.src=DIR_REL+"/images/nav/aboutOff.gif"; 
	 
	img7_on =new Image(); img7_on.src =DIR_REL+"/images/nav/recentOver.gif"; 
	img7_active =new Image(); img7_active.src =DIR_REL+"/images/nav/recentOn.gif"; 
	img7_off=new Image(); img7_off.src=DIR_REL+"/images/nav/recentOff.gif"; 
}

function movr(k) {
  eval('document.img'+k+'.src=img'+k+'_on.src');
}

function mout(k) {
  eval('document.img'+k+'.src=img'+k+'_off.src');
}

function mact(k) {
  eval('document.img'+k+'.src=img'+k+'_active.src');
}

function handleOver() {
  document.imgName.src=img_on.src;
}
function handleOut() {
  document.imgName.src=img_off.src;
}

$(function(){
	if(!document.images) return; 
	$('#mainImages a').each(function(){ 
		this.imgNum=this.id.substr(8);  
		if(this.imgNum==CURRENT_SECTION){
			mact(this.imgNum);
			return;
		}
		this.onmouseover=function(){ movr(this.imgNum) };
		this.onmouseout =function(){ mout(this.imgNum) };
	})
	
	if(parseInt(AUTO_OPEN_CID)>0) 
		tb_show('',DIR_REL+'/tools/popup_gallery.php?cID='+AUTO_OPEN_CID, '');
});

function loadPopupMain(abs_path,maxW,maxH,imgNum){ 
	var mpi=document.getElementById('mainPopupImage')
	mpi.style.display="none";
	mpi.src=DIR_REL+'/php_thumb/phpThumb.php?src='+abs_path+'&w='+parseInt(maxW)+'&h='+parseInt(maxH);
	mpi.style.display="block";
	$('.popupSideImg').each(function(){this.className='popupSideImg whiteBorder'});
	$('#popupSideImg'+imgNum).get(0).className='popupSideImg redBorder';	
}