// remap jQuery to $
jQuery(document).ready(function($){

	$('#bucketnav a').hover(function() {
		var $title = $(this).children('.buckettitle');
		$title.stop(true, true).show();
		$title.animate({ opacity: 1, top: "-5px" }, 'slow');
	}, function() {
		var $title = $(this).children('.buckettitle');
		$title.delay('500').animate({ opacity: 0, top: "5px" }, 'slow');
	});

	var zIndexNumber = 1000;
	$('nav li').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
	
	$("#content a[href$=pdf]").each(function() {
  		$(this).attr('target', '_blank');
	});
	
	$('#content a:not([href^="http://avantas.biz/"]):not([href^="#"]):not([href^="/"])').each(function() {
  		$(this).attr('target', '_blank');
	});
	
	//Comemnt Form 
	$('.comment-reply-link').click(function() {
		$('#respond').addClass('responding');
	});
	$('#cancel-comment-reply-link').click(function() {
		$('#respond').removeClass('responding');
	});
});
