$(function(){
	// ajax
	$(".ajax").click(function(){
		$.get($(this).attr("href"), null, null, "script");
		return false;
	});
	
	// validate
	$(".validate").each(function(){
		$(this).validate();
	});
	
	// changed color of image on top navigation
	$("#contact_top li").each(function(index) {
		if ($(this).find("a").size() == 0) {
			var img = $(this).find("img");
			img.attr("src", img.attr("src").replace(".gif", "_on.gif"));
		}
	});
	
	// google analytics
	try {
		var pageTracker = _gat._getTracker("UA-8597147-1");
		pageTracker._trackPageview();
	} catch(err) {}
	
  $(".t_videos li:last").css("margin","0");
  $(".testimonials2 div:last").css("border-bottom","0");
	
});

