$(document).ready(function(){
	setupBar();
	slider();
	$("table tr:nth-child(even)").addClass("even");
});

// ============================================================================
function setupBar() {
	$("#bar div.barint").find('a.button span').stop().css({'display': 'block', 'opacity': '0'});
	//Main page bar hover effects
	$("#bar div.barint").hover(function (){		
		$(this).find('a.button span').stop().animate({opacity: 1}, 'fast');
	},
	function(){
		$(this).find('a.button span').stop().animate({opacity: 0}, 'fast');
	});
}
function slider() {
    $('#slider').bxSlider({
		easing: 'easeOutQuint',
		speed:1000,
		auto: true,
		pause: 5000,
		pager: true,
		pagerSelector: '#sliderpager'
	});
}

