/*****************************
* D & D Labradors SCRIPTS
*
*****************************/

var activeTab = "";

function toggleTab(tabRef) {
	currTabRef = document.getElementById(activeTab);
	newTabRef = tabRef;
	
	currTabRef.className = "";
	newTabRef.className = "selected";
	
	document.getElementById(currTabRef.id+"_content").style.display = "none";
	document.getElementById(newTabRef.id+"_content").style.display = "block";
	
	activeTab = newTabRef.id;
}


function checkTab() {
	
	var uri = window.location.href;
	parts = uri.split("#");
	
	if(parts[1] != undefined) {
		$(document).ready( function() { 
			$("#tab"+parts[1]).click();
		});
	}
}

function checkPopup() {
	
	var uri = window.location.href;
	parts = uri.split("#");
	
	if(parts[1] != undefined) {
		$(document).ready( function() { 
			$("#"+parts[1]).click();
		});
	}
}

function checkSelected(listRef) {
	if(listRef.value == "Other")
		$("#otherHeard").show();
	else if(listRef.value == "Referral")
		$("#otherHeard").show();
	else
		$("#otherHeard").hide();
}

function getSocial() {
	$.post('social.php', function(d) {
		$('#socialLinks').html(d);
	});

}
