/* function that opens a popup window */
var popup=null;
function pop_wedding(url) {
	window.open(url,"pop_win","height=525,width=450,location=no,menubars=no,scrollbars=yes,toolbars=no,resizable=yes");
}

/* Rollover script for home page marquees */
function showDiv(n) {
	document.getElementById(n).style.display = "block";
}
function hideDiv(n) {
	document.getElementById(n).style.display = "none";
}


function showTab(divID, tabCount) {
	for(i = 1; i <= tabCount; i++) {
		var marqueeContainerID = i+"_Marquee";
                if(marqueeContainerID  == divID) {
			showDiv(marqueeContainerID);
		} else {
			hideDiv(marqueeContainerID);
		}
	}
}