// Declare All Datasets in the site
//for use with external html fragments being loaded into an htmlpanel
//load on the main page

//homepage headlines
var dsHeadlines
//news page
var dsNews;
//champions page
var dschampions;
//breeding page
var dsbreedings;
//dogs, bitches, exports and family page
var dsdogs;
//view dog page
var dsdog;
var dswins;
var dspedigree;
var dssireside;
var dsdamside;
var dsimages;
var dsmainimage;
var extrapath;


var galleryid=0;
//for the view dog page

//we need to know what category the kennel link is
//this function takes the category and runs the divfader
var category;
function linklauncher(pagecat, url) {
	category = pagecat;
	divfader(url);	
}
	
//extra panel stuff

//show a div using css styling
function show(divname,shower,hider){
	document.getElementById(divname).style.display = "block";
	document.getElementById(shower).style.display = "none";
	document.getElementById(hider).style.display = "block";
	}
function hide(divname,hider,shower){
	document.getElementById(divname).style.display = "none";
	document.getElementById(hider).style.display = "none";
	document.getElementById(shower).style.display = "block";
	}


