// JavaScript Document

//function showChildPro(proid,obj)
//{
//	var proChild_array=$("#"+proid+" > div");
//	if(proChild_array.length==0){
//		return;
//	}
//	obj.style.display = "block";
//	proChild_array.each(function (i){
//				if($(this).css("display") == "none"){
//					$(this).css("display","block");
//				}else{
//					$(this).css("display","none");
//				}
//	});
//}

function setPicSize(pic) {
	maxWidth = 700;
	if (pic.width > maxWidth) {
		pic.width = maxWidth;
	}
}

function setBg(obj) {
	obj.style.background = "url(img/subNavHoverBg.gif)";
}
function unsetBg(obj) {
	obj.style.background = "url(img/subNavBg.gif)";
}
