//JavaScript jQuery

jQuery(document).ready(function() 
{
	
	//tool tip
	jQuery('header nav.globalnav ul li a[href] span').qtip(
	{
	content: {
		text: false 
	},
	position: {
		corner: {
			target: 'topMiddle',
			tooltip: 'bottomMiddle'
		}
	},
	style: { 
		tip: { corner: 'bottomMiddle' } ,
		border: {width: 3,radius: 4}
	},
	show: { effect: { type: 'slide' } },
	});
	
	
	//about overview table
	jQuery("section.overview table").each(function(){
		jQuery(this).find("th:last").css("border-bottom","1px #333333 solid");
		jQuery(this).find("td:last").css("border-bottom","1px #999999 dotted");
	});    
	//about contact table
	jQuery("section.contact table").each(function(){
		jQuery(this).find("th:last").css("border-bottom","1px #333333 solid");
		jQuery(this).find("td:last").css("border-bottom","1px #999999 dotted");
	});

});
