$(document).ready(function(){

	$('table.consultant tr td:even, table.consultant th:even').css('background-color','#DFE6CC');
	$('table.education tr td:even, table.education th:even').css('background-color','#E8F3F8');
    
	/*$('#info-slideshow').slideshow({
		timeout: 3000,
		type: 'sequence'
	});*/
	
	/*$('#ads_container_1').slideshow({
		timeout: 3000,
		type: 'sequence'
	});
	
	$('#ads_container_2').slideshow({
		timeout: 3000,
		type: 'sequence'
	});

	$('#ads_container_3').slideshow({
		timeout: 3000,
		type: 'random'
	});
	
	$('#ads_container_4').slideshow({
		timeout: 3000,
		type: 'random'
	});*/
	
	tooltip();
	infopage_link_tooltip();
	
	//hover('table#docs-prod-sil-attr-list tr td div', 'attr-item-hover');
});

function infopage_link_tooltip()
{
	$('a.infopage-link').tooltip({
		track: true,
		delay: 1,
		showURL: false,
		showBody: false,
		fade: 250,
		extraClass: 'colorme'
	});
}
function tooltip()
{
	$('table#docs-prod-sil-attr-list td div.attribute-dot').tooltip({
		track: true,
		delay: 1,
		showURL: false,
		showBody: false,
		fade: 250
	});
}

function hover(ele, hoverClass)
{
	$(ele).hover(
		function(){
			$(this).addClass(hoverClass);
		},
		function() {
			$(this).removeClass(hoverClass);
		}
	);
}