﻿//-----Parts Specific Javascript-----\\
function FitsModels(strThis){
	strThis.nextSibling.style.display = (strThis.nextSibling.style.display != "none") ? "none" : "block";
	return false;
}

function HideModels(strDiv){
	document.getElementById(strDiv).style.display = "none";
}


//Mouse Hover for Fits Models Links
function ShowDefault(){
	document.body.style.cursor = "default";
}

function ShowPointer(){
	document.body.style.cursor = "pointer";
}