
$(document).ready(function() {
	
	//Hover effect for services navigation.
	
	$("#services_trade_shows").hover(function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_trade_shows-hover.png";
			$("#services_trade_shows").ifixpng();
		}
	}, function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_trade_shows.png";
			$("#services_trade_shows").ifixpng();
		}
	});
	
	$("#services_trade_shows_details").hover(function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_details_hover.png";
			$("#services_trade_shows_details").ifixpng();
		}
	}, function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_details.png";
			$("#services_trade_shows_details").ifixpng();
		}
	});
	$("#services_travel_programs").hover(function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_travel_programs-hover.png";
			$("#services_travel_programs").ifixpng();
		}
	}, function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_travel_programs.png";
			$("#services_travel_programs").ifixpng();
		}
	});
	
	$("#services_travel_programs_details").hover(function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_details_hover.png";
			$("#services_travel_programs_details").ifixpng();
		}
	}, function() {
		if ($(this)[0].className != "active") {
			$(this)[0].src="images/services_details.png";
			$("#services_travel_programs_details").ifixpng();
		}
	});

});