// JavaScript Document

jQuery(document).ready(function(){
jQuery("#yRight").hover(function() {
 jQuery("#contentH").animate({marginLeft: "-150px"}, 1000);	
});
jQuery("#yLeft").hover(function() {
							
 jQuery("#contentH").animate({marginLeft: "0px"}, 1000);	
});
});



function contactInfo(showtab,tabno,n)
{
	jQuery(document).ready(function(){
	for (i=1;i<=n;i++)
	{
		if(i==tabno)
		{
			document.getElementById(showtab+i).style.display="inline";
			var DivHeight = document.getElementById('pane1'+i).offsetHeight;

			if(DivHeight>=400)
			{
				var pid= document.getElementById('pane1'+i).id;
				jQuery('#'+pid).jScrollPane({scrollbarWidth:19, scrollbarMargin:0, showArrows:false});
			}

											
		}
		else 
		{
			document.getElementById(showtab+i).style.display="none";
			
		}
	}	
	});							
}


			
function contactInfoClose(tab)
{
	document.getElementById(tab).style.display="none";
}


function emailPopup(tabID)
{
		document.getElementById(tabID).style.display="inline";
}





